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 | 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() |
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.
|
comparator, first, last
equals, hashCode
contains, containsAll, isEmpty, size, toArray, toArray, toString
public static <E> java.util.SortedSet<E> unmodifiableSortedSet(java.util.SortedSet<E> set)
E
- the element typeset
- the set to decorate, must not be nullSortedSet
java.lang.NullPointerException
- if set is nullpublic 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>
"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"