Uses of Interface
net.sf.beanlib.util.NavigableMap

Packages that use NavigableMap
net.sf.beanlib.util Mirror package of java.util of Java 6 beta 2. 
net.sf.beanlib.util.concurrent Mirror package of java.util.concurrent of Java 6 beta 2. 
 

Uses of NavigableMap in net.sf.beanlib.util
 

Methods in net.sf.beanlib.util that return NavigableMap
 NavigableMap<K,V> NavigableMap.descendingMap()
          Returns a reverse order view of the mappings contained in this map.
 NavigableMap<K,V> NavigableMap.headMap(K toKey, boolean inclusive)
          Returns a view of the portion of this map whose keys are less than (or equal to, if inclusive is true) toKey.
 NavigableMap<K,V> NavigableMap.subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
          Returns a view of the portion of this map whose keys range from fromKey to toKey.
 NavigableMap<K,V> NavigableMap.tailMap(K fromKey, boolean inclusive)
          Returns a view of the portion of this map whose keys are greater than (or equal to, if inclusive is true) fromKey.
 

Uses of NavigableMap in net.sf.beanlib.util.concurrent
 

Subinterfaces of NavigableMap in net.sf.beanlib.util.concurrent
 interface ConcurrentNavigableMap<K,V>
          A ConcurrentMap supporting NavigableMap operations, and recursively so for its navigable sub-maps.
 

Classes in net.sf.beanlib.util.concurrent that implement NavigableMap
 class ConcurrentSkipListMap<K,V>
          A scalable concurrent ConcurrentNavigableMap implementation.
(package private) static class ConcurrentSkipListMap.SubMap<K,V>
          Submaps returned by ConcurrentSkipListMap submap operations represent a subrange of mappings of their underlying maps.