Uses of Class
net.sf.beanlib.util.concurrent.ConcurrentSkipListMap.SubMap

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

Uses of ConcurrentSkipListMap.SubMap in net.sf.beanlib.util.concurrent
 

Methods in net.sf.beanlib.util.concurrent that return ConcurrentSkipListMap.SubMap
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.descendingMap()
           
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.headMap(K toKey)
           
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.headMap(K toKey, boolean inclusive)
           
private  ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.newSubMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
          Utility to create submaps, where given bounds override unbounded(null) ones and/or are checked against bounded ones.
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive)
           
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.subMap(K fromKey, K toKey)
           
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.tailMap(K fromKey)
           
 ConcurrentSkipListMap.SubMap<K,V> ConcurrentSkipListMap.SubMap.tailMap(K fromKey, boolean inclusive)