Klasse List<E>

java.lang.Object
ch.nolix.core.independent.list.List<E>
Typparameter:
E - is the type of the elements of a List.
Alle implementierten Schnittstellen:
Iterable<E>

public final class List<E> extends Object implements Iterable<E>
Autor:
Silvan Wyss
  • 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 <T> List<T> withElements(Iterable<T> 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)
    • toByteArray

      public byte[] toByteArray(Function<E,Byte> byteMapper)