Uses of Interface
net.sf.beanlib.utils.range.SortedRangeMap

Packages that use SortedRangeMap
net.sf.beanlib.utils General Utilities 
net.sf.beanlib.utils.range Range related utilities 
 

Uses of SortedRangeMap in net.sf.beanlib.utils
 

Classes in net.sf.beanlib.utils that implement SortedRangeMap
(package private) static class CollectionUtils.SynchronizedSortedRangeMap<T,K,V>
          A thread-safe SortedRangeMap.
 

Fields in net.sf.beanlib.utils declared as SortedRangeMap
private  SortedRangeMap<T,K,V> CollectionUtils.SynchronizedSortedRangeMap.srm
           
 

Methods in net.sf.beanlib.utils that return SortedRangeMap
static
<T,K,V> SortedRangeMap<T,K,V>
CollectionUtils.synchronizedSortedRangeMap(SortedRangeMap<T,K,V> m)
          Returns a synchronized (thread-safe) sorted range map backed by the specified sorted range map.
 

Methods in net.sf.beanlib.utils with parameters of type SortedRangeMap
static
<T,K,V> SortedRangeMap<T,K,V>
CollectionUtils.synchronizedSortedRangeMap(SortedRangeMap<T,K,V> m)
          Returns a synchronized (thread-safe) sorted range map backed by the specified sorted range map.
 

Constructors in net.sf.beanlib.utils with parameters of type SortedRangeMap
CollectionUtils.SynchronizedSortedRangeMap(SortedRangeMap<T,K,V> srm)
           
CollectionUtils.SynchronizedSortedRangeMap(SortedRangeMap<T,K,V> srm, Object mutex)
           
 

Uses of SortedRangeMap in net.sf.beanlib.utils.range
 

Classes in net.sf.beanlib.utils.range that implement SortedRangeMap
 class RangeTreeMap<T,K extends RangeBoundable<T>,V>
          Range Tree Map that supports retrieval by using a point that falls within the range of a key which implements RangeBoundable.
 

Constructors in net.sf.beanlib.utils.range with parameters of type SortedRangeMap
RangeTreeMap(SortedRangeMap<T,K,? extends V> m)