Package | Description |
---|---|
org.opentrafficsim.base.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
ImmutableTreeSet<E>
An immutable wrapper for a TreeSet.
|
Modifier and Type | Method and Description |
---|---|
ImmutableNavigableSet<E> |
ImmutableTreeSet.descendingSet()
Returns a reverse order view of the elements contained in this immutable set.
|
ImmutableNavigableSet<E> |
ImmutableNavigableSet.descendingSet()
Returns a reverse order view of the elements contained in this immutable set.
|
ImmutableNavigableSet<E> |
ImmutableTreeSet.headSet(E toElement,
boolean inclusive)
Returns a view of the portion of this immutable set whose elements are less than (or equal to, if
inclusive is
true) toElement . |
ImmutableNavigableSet<E> |
ImmutableNavigableSet.headSet(E toElement,
boolean inclusive)
Returns a view of the portion of this immutable set whose elements are less than (or equal to, if
inclusive is
true) toElement . |
ImmutableNavigableSet<E> |
ImmutableTreeSet.subSet(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive)
Returns a view of the portion of this immutable set whose elements range from
fromElement to toElement . |
ImmutableNavigableSet<E> |
ImmutableNavigableSet.subSet(E fromElement,
boolean fromInclusive,
E toElement,
boolean toInclusive)
Returns a view of the portion of this immutable set whose elements range from
fromElement to toElement . |
ImmutableNavigableSet<E> |
ImmutableTreeSet.tailSet(E fromElement,
boolean inclusive)
Returns a view of the portion of this immutable set whose elements are greater than (or equal to, if
inclusive is
true) fromElement . |
ImmutableNavigableSet<E> |
ImmutableNavigableSet.tailSet(E fromElement,
boolean inclusive)
Returns a view of the portion of this immutable set whose elements are greater than (or equal to, if
inclusive is
true) fromElement . |
Copyright © 2014–2016 Delft University of Technology. All rights reserved.