Class UnmodifiableSortedMap<K,V>
- java.lang.Object
-
- org.eclipse.collections.impl.UnmodifiableMap<K,V>
-
- org.eclipse.collections.impl.map.sorted.mutable.UnmodifiableSortedMap<K,V>
-
- All Implemented Interfaces:
Serializable,Map<K,V>,SortedMap<K,V>
- Direct Known Subclasses:
UnmodifiableTreeMap
public class UnmodifiableSortedMap<K,V> extends UnmodifiableMap<K,V> implements SortedMap<K,V>
An unmodifiable view of a SortedMap.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableSortedMap(SortedMap<K,V> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Comparator<? super K>comparator()KfirstKey()SortedMap<K,V>headMap(K toKey)KlastKey()SortedMap<K,V>subMap(K fromKey, K toKey)SortedMap<K,V>tailMap(K fromKey)-
Methods inherited from class org.eclipse.collections.impl.UnmodifiableMap
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keySet, put, putAll, remove, size, toString, values
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, equals, forEach, get, getOrDefault, hashCode, isEmpty, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
-
-