Klasse LinkedCollection<E>

java.lang.Object
de.svws_nrw.core.adt.collection.LinkedCollection<E>
Typparameter:
E - der Inhaltstyp der LinkedCollection
Alle implementierten Schnittstellen:
Iterable<E>, Collection<E>, Deque<E>, Queue<E>, SequencedCollection<E>

public final class LinkedCollection<E> extends Object implements Deque<E>
Die Klasse LinkedCollection implementiert das Interface Collection. Sie stellt eine einfache, unsortierte Collection dar und akzeptiert keine null-Werte, jedoch Duplikate. Intern ist sie als doppelt verkettete Liste realisiert.
  • Konstruktordetails

    • LinkedCollection

      public LinkedCollection()
      Erzeugt eine neue LinkedCollection.
    • LinkedCollection

      public LinkedCollection(LinkedCollection<? extends E> c)
      Erzeugt eine neue LinkedCollection als Kopie der übergebenen LinkedCollection
      Parameter:
      c - die LinkedCollection, die kopiert wird
  • Methodendetails