Interface OrderedMap<K,V>
-
- Type Parameters:
K- the type of the keys in the mapV- the type of the values in the map
- All Superinterfaces:
IterableMap<K,V>,Map<K,V>
- All Known Subinterfaces:
IterableSortedMap<K,V>,OrderedBidiMap<K,V>,SortedBidiMap<K,V>
- All Known Implementing Classes:
AbstractLinkedMap,AbstractOrderedMapDecorator,AbstractSortedMapDecorator,DualTreeBidiMap,DualTreeBidiMap.ViewMap,LinkedMap,LRUMap,LRUMap,TreeBidiMap,UnmodifiableOrderedMap
public interface OrderedMap<K,V> extends IterableMap<K,V>
Defines a map that maintains order and allows both forward and backward iteration through that order.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KfirstKey()Gets the first key currently in this map.KlastKey()Gets the last key currently in this map.OrderedMapIterator<K,V>mapIterator()Obtains anOrderedMapIteratorover the map.KnextKey(K key)Gets the next key after the one specified.KpreviousKey(K key)Gets the previous key before the one specified.-
Methods inherited from interface org.apache.openjpa.lib.util.collections.IterableMap
clear, put, putAll
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
mapIterator
OrderedMapIterator<K,V> mapIterator()
Obtains anOrderedMapIteratorover the map.A ordered map iterator is an efficient way of iterating over maps in both directions.
- Specified by:
mapIteratorin interfaceIterableMap<K,V>- Returns:
- a map iterator
-
firstKey
K firstKey()
Gets the first key currently in this map.- Returns:
- the first key currently in this map
- Throws:
NoSuchElementException- if this map is empty
-
lastKey
K lastKey()
Gets the last key currently in this map.- Returns:
- the last key currently in this map
- Throws:
NoSuchElementException- if this map is empty
-
nextKey
K nextKey(K key)
Gets the next key after the one specified.- Parameters:
key- the key to search for next from- Returns:
- the next key, null if no match or at end
-
-