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:
java.io.Serializable
,java.util.Map<K,V>
,java.util.SortedMap<K,V>
- Direct Known Subclasses:
UnmodifiableTreeMap
public class UnmodifiableSortedMap<K,V> extends UnmodifiableMap<K,V> implements java.util.SortedMap<K,V>
An unmodifiable view of a SortedMap.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Fields inherited from class org.eclipse.collections.impl.UnmodifiableMap
delegate
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableSortedMap(java.util.SortedMap<K,V> delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Comparator<? super K>
comparator()
K
firstKey()
protected java.util.SortedMap<K,V>
getSortedMap()
java.util.SortedMap<K,V>
headMap(K toKey)
K
lastKey()
java.util.SortedMap<K,V>
subMap(K fromKey, K toKey)
java.util.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 class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-