Uses of Interface
org.jboss.util.collection.NavigableMap
-
Packages that use NavigableMap Package Description org.jboss.util.collection Extentions to the Java Collections framework. -
-
Uses of NavigableMap in org.jboss.util.collection
Subinterfaces of NavigableMap in org.jboss.util.collection Modifier and Type Interface Description interface
ConcurrentNavigableMap<K,V>
AConcurrentMap
supportingNavigableMap
operations.Classes in org.jboss.util.collection that implement NavigableMap Modifier and Type Class Description class
ConcurrentSkipListMap<K,V>
A scalableConcurrentNavigableMap
implementation.(package private) static class
ConcurrentSkipListMap.ConcurrentSkipListSubMap<K,V>
Submaps returned byConcurrentSkipListMap
submap operations represent a subrange of mappings of their underlying maps.Methods in org.jboss.util.collection that return NavigableMap Modifier and Type Method Description NavigableMap<K,V>
NavigableMap. headMap(K toKey)
Returns a view of the portion of this map whose keys are strictly less than toKey.NavigableMap<K,V>
NavigableMap. subMap(K fromKey, K toKey)
Returns a view of the portion of this map whose keys range from fromKey, inclusive, to toKey, exclusive.NavigableMap<K,V>
NavigableMap. tailMap(K fromKey)
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
-