Uses of Class
org.djutils.immutablecollections.ImmutableAbstractCollection
Package | Description |
---|---|
org.djutils.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
-
Uses of ImmutableAbstractCollection in org.djutils.immutablecollections
Subclasses of ImmutableAbstractCollection in org.djutils.immutablecollections Modifier and Type Class Description class
ImmutableAbstractList<E>
An abstract base class for an immutable wrapper for a List.class
ImmutableAbstractSet<E>
An abstract base class for an immutable wrapper for a Set.class
ImmutableArrayList<E>
An immutable wrapper for an ArrayList.class
ImmutableHashSet<E>
An immutable wrapper for a HashSet.class
ImmutableLinkedHashSet<E>
An immutable wrapper for a LinkedHashSet.class
ImmutableTreeSet<E>
An immutable wrapper for a TreeSet.class
ImmutableVector<E>
An immutable wrapper for a Vector.Constructors in org.djutils.immutablecollections with parameters of type ImmutableAbstractCollection Constructor Description ImmutableArrayList(ImmutableAbstractCollection<? extends E> collection)
ImmutableHashSet(ImmutableAbstractCollection<? extends E> collection)
Construct a new ImmutableHashSet containing a copy of the provided Collection.ImmutableLinkedHashSet(ImmutableAbstractCollection<? extends E> collection)
ImmutableVector(ImmutableAbstractCollection<? extends E> collection)