Package | Description |
---|---|
org.opentrafficsim.base.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
Modifier and Type | Class and Description |
---|---|
class |
ImmutableTreeMap<K,V>
An immutable wrapper for a TreeMap.
|
Modifier and Type | Method and Description |
---|---|
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.descendingMap()
Returns a reverse order view of the keys contained in this immutable map.
|
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.descendingMap()
Returns a reverse order view of the keys contained in this immutable map.
|
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.headMap(K toKey,
boolean inclusive)
Returns a view of the portion of this immutable map whose keys are less than (or equal to, if
inclusive is true)
toKey . |
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.headMap(K toKey,
boolean inclusive)
Returns a view of the portion of this immutable map whose keys are less than (or equal to, if
inclusive is true)
toKey . |
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
Returns a view of the portion of this immutable map whose keys range from
fromKey to toKey . |
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.subMap(K fromKey,
boolean fromInclusive,
K toKey,
boolean toInclusive)
Returns a view of the portion of this immutable map whose keys range from
fromKey to toKey . |
ImmutableNavigableMap<K,V> |
ImmutableTreeMap.tailMap(K fromKey,
boolean inclusive)
Returns a view of the portion of this immutable map whose keys are greater than (or equal to, if
inclusive is
true) fromKey . |
ImmutableNavigableMap<K,V> |
ImmutableNavigableMap.tailMap(K fromKey,
boolean inclusive)
Returns a view of the portion of this immutable map whose keys are greater than (or equal to, if
inclusive is
true) fromKey . |
Copyright © 2014–2016 Delft University of Technology. All rights reserved.