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 interfaceConcurrentNavigableMap<K,V>AConcurrentMapsupportingNavigableMapoperations.Classes in org.jboss.util.collection that implement NavigableMap Modifier and Type Class Description classConcurrentSkipListMap<K,V>A scalableConcurrentNavigableMapimplementation.(package private) static classConcurrentSkipListMap.ConcurrentSkipListSubMap<K,V>Submaps returned byConcurrentSkipListMapsubmap 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.
-