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

Packages that use NavigableSet
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 NavigableSet in net.sf.beanlib.util
 

Methods in net.sf.beanlib.util that return NavigableSet
 NavigableSet<K> NavigableMap.descendingKeySet()
          Returns a reverse order NavigableSet view of the keys contained in this map.
 NavigableSet<E> NavigableSet.descendingSet()
          Returns a reverse order view of the elements contained in this set.
 NavigableSet<E> NavigableSet.headSet(E toElement, boolean inclusive)
          Returns a view of the portion of this set whose elements are less than (or equal to, if inclusive is true) toElement.
 NavigableSet<K> NavigableMap.navigableKeySet()
          Returns a NavigableSet view of the keys contained in this map.
 NavigableSet<E> NavigableSet.subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
          Returns a view of the portion of this set whose elements range from fromElement to toElement.
 NavigableSet<E> NavigableSet.tailSet(E fromElement, boolean inclusive)
          Returns a view of the portion of this set whose elements are greater than (or equal to, if inclusive is true) fromElement.
 

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

Classes in net.sf.beanlib.util.concurrent that implement NavigableSet
(package private) static class ConcurrentSkipListMap.KeySet<E>
           
 class ConcurrentSkipListSet<E>
          A scalable concurrent NavigableSet implementation based on a ConcurrentSkipListMap.
 

Methods in net.sf.beanlib.util.concurrent that return NavigableSet
 NavigableSet<K> ConcurrentSkipListMap.descendingKeySet()
           
 NavigableSet<K> ConcurrentSkipListMap.SubMap.descendingKeySet()
           
 NavigableSet<K> ConcurrentNavigableMap.descendingKeySet()
          Returns a reverse order NavigableSet view of the keys contained in this map.
 NavigableSet<E> ConcurrentSkipListSet.descendingSet()
          Returns a reverse order view of the elements contained in this set.
 NavigableSet<E> ConcurrentSkipListMap.KeySet.descendingSet()
           
 NavigableSet<E> ConcurrentSkipListSet.headSet(E toElement)
           
 NavigableSet<E> ConcurrentSkipListMap.KeySet.headSet(E toElement)
           
 NavigableSet<E> ConcurrentSkipListSet.headSet(E toElement, boolean inclusive)
           
 NavigableSet<E> ConcurrentSkipListMap.KeySet.headSet(E toElement, boolean inclusive)
           
 NavigableSet<K> ConcurrentSkipListMap.keySet()
          Returns a NavigableSet view of the keys contained in this map.
 NavigableSet<K> ConcurrentSkipListMap.SubMap.keySet()
           
 NavigableSet<K> ConcurrentNavigableMap.keySet()
          Returns a NavigableSet view of the keys contained in this map.
 NavigableSet<K> ConcurrentSkipListMap.navigableKeySet()
           
 NavigableSet<K> ConcurrentSkipListMap.SubMap.navigableKeySet()
           
 NavigableSet<K> ConcurrentNavigableMap.navigableKeySet()
          Returns a NavigableSet view of the keys contained in this map.
 NavigableSet<E> ConcurrentSkipListSet.subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
           
 NavigableSet<E> ConcurrentSkipListMap.KeySet.subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive)
           
 NavigableSet<E> ConcurrentSkipListSet.subSet(E fromElement, E toElement)
           
 NavigableSet<E> ConcurrentSkipListMap.KeySet.subSet(E fromElement, E toElement)
           
 NavigableSet<E> ConcurrentSkipListSet.tailSet(E fromElement)
           
 NavigableSet<E> ConcurrentSkipListMap.KeySet.tailSet(E fromElement)
           
 NavigableSet<E> ConcurrentSkipListSet.tailSet(E fromElement, boolean inclusive)
           
 NavigableSet<E> ConcurrentSkipListMap.KeySet.tailSet(E fromElement, boolean inclusive)