public final class UnmodifiableSortedSet<E> extends AbstractSortedSetDecorator<E> implements Unmodifiable
SortedSet to ensure it can't be altered.
This class is Serializable from Commons Collections 3.1.
Attempts to modify it will result in an UnsupportedOperationException.
| Modifier and Type | Field and Description |
|---|---|
private static long |
serialVersionUID
Serialization version
|
| Modifier | Constructor and Description |
|---|---|
private |
UnmodifiableSortedSet(java.util.SortedSet<E> set)
Constructor that wraps (not copies).
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E object) |
boolean |
addAll(java.util.Collection<? extends E> coll) |
void |
clear() |
java.util.SortedSet<E> |
headSet(E toElement) |
java.util.Iterator<E> |
iterator() |
private void |
readObject(java.io.ObjectInputStream in)
Read the collection in using a custom routine.
|
boolean |
remove(java.lang.Object object) |
boolean |
removeAll(java.util.Collection<?> coll) |
boolean |
retainAll(java.util.Collection<?> coll) |
java.util.SortedSet<E> |
subSet(E fromElement,
E toElement) |
java.util.SortedSet<E> |
tailSet(E fromElement) |
static <E> java.util.SortedSet<E> |
unmodifiableSortedSet(java.util.SortedSet<E> set)
Factory method to create an unmodifiable set.
|
private void |
writeObject(java.io.ObjectOutputStream out)
Write the collection out using a custom routine.
|
comparator, decorated, first, lastcontains, containsAll, equals, hashCode, isEmpty, setCollection, size, toArray, toArray, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitprivate static final long serialVersionUID
private UnmodifiableSortedSet(java.util.SortedSet<E> set)
set - the set to decorate, must not be nulljava.lang.IllegalArgumentException - if set is nullpublic static <E> java.util.SortedSet<E> unmodifiableSortedSet(java.util.SortedSet<E> set)
E - the element typeset - the set to decorate, must not be nullSortedSetjava.lang.IllegalArgumentException - if set is nullprivate void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
out - the output streamjava.io.IOExceptionprivate void readObject(java.io.ObjectInputStream in)
throws java.io.IOException,
java.lang.ClassNotFoundException
in - the input streamjava.io.IOExceptionjava.lang.ClassNotFoundExceptionpublic java.util.Iterator<E> iterator()
public boolean add(E object)
add in interface java.util.Collection<E>add in interface java.util.Set<E>add in class AbstractCollectionDecorator<E>public boolean addAll(java.util.Collection<? extends E> coll)
addAll in interface java.util.Collection<E>addAll in interface java.util.Set<E>addAll in class AbstractCollectionDecorator<E>public void clear()
clear in interface java.util.Collection<E>clear in interface java.util.Set<E>clear in class AbstractCollectionDecorator<E>public boolean remove(java.lang.Object object)
remove in interface java.util.Collection<E>remove in interface java.util.Set<E>remove in class AbstractCollectionDecorator<E>public boolean removeAll(java.util.Collection<?> coll)
removeAll in interface java.util.Collection<E>removeAll in interface java.util.Set<E>removeAll in class AbstractCollectionDecorator<E>public boolean retainAll(java.util.Collection<?> coll)
retainAll in interface java.util.Collection<E>retainAll in interface java.util.Set<E>retainAll in class AbstractCollectionDecorator<E>public java.util.SortedSet<E> subSet(E fromElement, E toElement)
subSet in interface java.util.SortedSet<E>subSet in class AbstractSortedSetDecorator<E>public java.util.SortedSet<E> headSet(E toElement)
headSet in interface java.util.SortedSet<E>headSet in class AbstractSortedSetDecorator<E>