Home » openjdk-7 » java » util » [javadoc | source]
java.util
static class: Collections.SynchronizedSortedSet [javadoc | source]
java.lang.Object
   java.util.Collections.SynchronizedCollection<E>
      java.util.Collections.SynchronizedSet<E>
         java.util.Collections$SynchronizedSortedSet

All Implemented Interfaces:
    SortedSet, Set, Collection, Serializable

Fields inherited from java.util.Collections$SynchronizedCollection:
c,  mutex
Constructor:
 SynchronizedSortedSet(SortedSet<E> s) 
 SynchronizedSortedSet(SortedSet<E> s,
    Object mutex) 
Method from java.util.Collections$SynchronizedSortedSet Summary:
comparator,   first,   headSet,   last,   subSet,   tailSet
Methods from java.util.Collections$SynchronizedSet:
equals,   hashCode
Methods from java.util.Collections$SynchronizedCollection:
add,   addAll,   clear,   contains,   containsAll,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from java.util.Collections$SynchronizedSortedSet Detail:
 public Comparator<? super E> comparator() 
 public E first() 
 public SortedSet<E> headSet(E toElement) 
 public E last() 
 public SortedSet<E> subSet(E fromElement,
    E toElement) 
 public SortedSet<E> tailSet(E fromElement)