- java.lang.Object
-
- swim.structure.collections.ValueMap<K,V>
-
- swim.structure.collections.ValueSortedMap<K,V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Comparator<? super K>
comparator()
K
firstKey()
SortedMap<K,V>
headMap(K toKeyObject)
SortedMap<Value,Value>
inner()
<K2> ValueSortedMap<K2,V>
keyClass(Class<K2> keyClass)
<K2> ValueSortedMap<K2,V>
keyForm(Form<K2> keyForm)
K
lastKey()
SortedMap<K,V>
subMap(K fromKeyObject, K toKeyObject)
SortedMap<K,V>
tailMap(K fromKeyObject)
<V2> ValueSortedMap<K,V2>
valueClass(Class<V2> valueClass)
<V2> ValueSortedMap<K,V2>
valueForm(Form<V2> valueForm)
-
Methods inherited from class swim.structure.collections.ValueMap
clear, containsKey, containsValue, entrySet, equals, get, hashCode, isEmpty, keyForm, keySet, put, putAll, remove, size, toString, valueForm, values
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
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
-
-
-
-
Method Detail
-
keyForm
public <K2> ValueSortedMap<K2,V> keyForm(Form<K2> keyForm)
-
keyClass
public <K2> ValueSortedMap<K2,V> keyClass(Class<K2> keyClass)
-
valueForm
public <V2> ValueSortedMap<K,V2> valueForm(Form<V2> valueForm)
-
valueClass
public <V2> ValueSortedMap<K,V2> valueClass(Class<V2> valueClass)
- Overrides:
valueClass
in classValueMap<K,V>
-
comparator
public Comparator<? super K> comparator()
- Specified by:
comparator
in interfaceSortedMap<K,V>
-
-