Klasse List<E>

java.lang.Object
ch.nolix.core.independent.container.List<E>
Alle implementierten Schnittstellen:
Iterable<E>

public final class List<E> extends Object implements Iterable<E>
  • Konstruktordetails

    • List

      public List()
    • List

      public List(E element)
    • List

      public List(E[] elements)
  • Methodendetails

    • createArrayFromList

      public static String[] createArrayFromList(List<String> list)
    • withElements

      public static <E2> List<E2> withElements(Iterable<E2> elements)
    • addAtBegin

      public void addAtBegin(E element)
    • addAtEnd

      public void addAtEnd(E element)
    • clear

      public void clear()
    • getCopy

      public List<E> getCopy()
    • getElementCount

      public int getElementCount()
    • getStoredFirst

      public E getStoredFirst()
    • isEmpty

      public boolean isEmpty()
    • iterator

      public Iterator<E> iterator()
      Angegeben von:
      iterator in Schnittstelle Iterable<E>
    • removeFirst

      public void removeFirst()
    • removeFirstOccurrenceOf

      public void removeFirstOccurrenceOf(E element)