Package | Description |
---|---|
org.opentrafficsim.base.immutablecollections |
Contains a set of immutable collection interfaces and wrapper implementations.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ImmutableNavigableMap<K,V>
A
ImmutableSortedMap extended with navigation methods reporting closest matches for given search targets. |
Modifier and Type | Class and Description |
---|---|
class |
ImmutableTreeMap<K,V>
An immutable wrapper for a TreeMap.
|
Modifier and Type | Method and Description |
---|---|
ImmutableSortedMap<K,V> |
ImmutableTreeMap.headMap(K toKey)
Returns a view of the portion of this immutable map whose keys are strictly less than toKey.
|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.headMap(K toKey)
Returns a view of the portion of this immutable map whose keys are strictly less than toKey.
|
ImmutableSortedMap<K,V> |
ImmutableTreeMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this immutable map whose keys range from fromKey, inclusive, to
toKey, exclusive.
|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.subMap(K fromKey,
K toKey)
Returns a view of the portion of this immutable map whose keys range from fromKey, inclusive, to
toKey, exclusive.
|
ImmutableSortedMap<K,V> |
ImmutableTreeMap.tailMap(K fromKey)
Returns a view of the portion of this immutable map whose keys are greater than or equal to fromKey.
|
ImmutableSortedMap<K,V> |
ImmutableSortedMap.tailMap(K fromKey)
Returns a view of the portion of this immutable map whose keys are greater than or equal to fromKey.
|
Copyright © 2014–2016 Delft University of Technology. All rights reserved.