Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » set » [javadoc | source]
org.apache.commons.collections.set
public final class: UnmodifiableSortedSet [javadoc | source]
java.lang.Object
   org.apache.commons.collections.collection.AbstractCollectionDecorator
      org.apache.commons.collections.set.AbstractSetDecorator
         org.apache.commons.collections.set.AbstractSortedSetDecorator
            org.apache.commons.collections.set.UnmodifiableSortedSet

All Implemented Interfaces:
    Unmodifiable, Serializable, SortedSet, Set, Collection

Decorates another SortedSet to ensure it can't be altered.

This class is Serializable from Commons Collections 3.1.

Fields inherited from org.apache.commons.collections.collection.AbstractCollectionDecorator:
collection
Method from org.apache.commons.collections.set.UnmodifiableSortedSet Summary:
add,   addAll,   clear,   decorate,   headSet,   iterator,   remove,   removeAll,   retainAll,   subSet,   tailSet
Methods from org.apache.commons.collections.set.AbstractSortedSetDecorator:
comparator,   first,   getSortedSet,   headSet,   last,   subSet,   tailSet
Methods from org.apache.commons.collections.set.AbstractSetDecorator:
getSet
Methods from org.apache.commons.collections.collection.AbstractCollectionDecorator:
add,   addAll,   clear,   contains,   containsAll,   equals,   getCollection,   hashCode,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.set.UnmodifiableSortedSet Detail:
 public boolean add(Object object) 
 public boolean addAll(Collection coll) 
 public  void clear() 
 public static SortedSet decorate(SortedSet set) 
    Factory method to create an unmodifiable set.
 public SortedSet headSet(Object toElement) 
 public Iterator iterator() 
 public boolean remove(Object object) 
 public boolean removeAll(Collection coll) 
 public boolean retainAll(Collection coll) 
 public SortedSet subSet(Object fromElement,
    Object toElement) 
 public SortedSet tailSet(Object fromElement)