Package org.jboss.marshalling.util
Class FlatNavigableMap<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- org.jboss.marshalling.util.FlatNavigableMap<K,V>
-
- All Implemented Interfaces:
Map<K,V>,NavigableMap<K,V>,SortedMap<K,V>
public final class FlatNavigableMap<K,V> extends AbstractMap<K,V> implements NavigableMap<K,V>
- Author:
- David M. Lloyd
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description FlatNavigableMap(Comparator<? super K> comparator)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map.Entry<K,V>ceilingEntry(K key)KceilingKey(K key)Comparator<? super K>comparator()NavigableSet<K>descendingKeySet()NavigableMap<K,V>descendingMap()Set<Map.Entry<K,V>>entrySet()Map.Entry<K,V>firstEntry()KfirstKey()Map.Entry<K,V>floorEntry(K key)KfloorKey(K key)SortedMap<K,V>headMap(K toKey)NavigableMap<K,V>headMap(K toKey, boolean inclusive)Map.Entry<K,V>higherEntry(K key)KhigherKey(K key)Map.Entry<K,V>lastEntry()KlastKey()Map.Entry<K,V>lowerEntry(K key)KlowerKey(K key)NavigableSet<K>navigableKeySet()Map.Entry<K,V>pollFirstEntry()Map.Entry<K,V>pollLastEntry()Vput(K key, V value)NavigableMap<K,V>subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)SortedMap<K,V>subMap(K fromKey, K toKey)SortedMap<K,V>tailMap(K fromKey)NavigableMap<K,V>tailMap(K fromKey, boolean inclusive)-
Methods inherited from class java.util.AbstractMap
clear, clone, containsKey, containsValue, equals, get, hashCode, isEmpty, keySet, putAll, remove, size, toString, values
-
Methods inherited from class java.lang.Object
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, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size
-
-
-
-
Constructor Detail
-
FlatNavigableMap
public FlatNavigableMap(Comparator<? super K> comparator)
-
-
Method Detail
-
comparator
public Comparator<? super K> comparator()
- Specified by:
comparatorin interfaceSortedMap<K,V>
-
lowerEntry
public Map.Entry<K,V> lowerEntry(K key)
- Specified by:
lowerEntryin interfaceNavigableMap<K,V>
-
floorEntry
public Map.Entry<K,V> floorEntry(K key)
- Specified by:
floorEntryin interfaceNavigableMap<K,V>
-
ceilingEntry
public Map.Entry<K,V> ceilingEntry(K key)
- Specified by:
ceilingEntryin interfaceNavigableMap<K,V>
-
ceilingKey
public K ceilingKey(K key)
- Specified by:
ceilingKeyin interfaceNavigableMap<K,V>
-
higherEntry
public Map.Entry<K,V> higherEntry(K key)
- Specified by:
higherEntryin interfaceNavigableMap<K,V>
-
firstEntry
public Map.Entry<K,V> firstEntry()
- Specified by:
firstEntryin interfaceNavigableMap<K,V>
-
lastEntry
public Map.Entry<K,V> lastEntry()
- Specified by:
lastEntryin interfaceNavigableMap<K,V>
-
pollFirstEntry
public Map.Entry<K,V> pollFirstEntry()
- Specified by:
pollFirstEntryin interfaceNavigableMap<K,V>
-
pollLastEntry
public Map.Entry<K,V> pollLastEntry()
- Specified by:
pollLastEntryin interfaceNavigableMap<K,V>
-
descendingMap
public NavigableMap<K,V> descendingMap()
- Specified by:
descendingMapin interfaceNavigableMap<K,V>
-
navigableKeySet
public NavigableSet<K> navigableKeySet()
- Specified by:
navigableKeySetin interfaceNavigableMap<K,V>
-
descendingKeySet
public NavigableSet<K> descendingKeySet()
- Specified by:
descendingKeySetin interfaceNavigableMap<K,V>
-
subMap
public NavigableMap<K,V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
- Specified by:
subMapin interfaceNavigableMap<K,V>
-
headMap
public NavigableMap<K,V> headMap(K toKey, boolean inclusive)
- Specified by:
headMapin interfaceNavigableMap<K,V>
-
tailMap
public NavigableMap<K,V> tailMap(K fromKey, boolean inclusive)
- Specified by:
tailMapin interfaceNavigableMap<K,V>
-
-