Uses of Interface
jsr166x.NavigableMap

Packages that use NavigableMap
jsr166x   
 

Uses of NavigableMap in jsr166x
 

Subinterfaces of NavigableMap in jsr166x
 interface ConcurrentNavigableMap<K,V>
          A ConcurrentMap supporting NavigableMap operations.
 

Classes in jsr166x that implement NavigableMap
 class ConcurrentSkipListMap<K,V>
          A scalable ConcurrentNavigableMap implementation.
 

Methods in jsr166x that return NavigableMap
 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.
 



Copyright © 2013 Glasnost. All Rights Reserved.