Class UnmodifiableNavigableSet<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.set.AbstractSetDecorator<E>
org.apache.commons.collections4.set.AbstractSortedSetDecorator<E>
org.apache.commons.collections4.set.AbstractNavigableSetDecorator<E>
org.apache.commons.collections4.set.UnmodifiableNavigableSet<E>
- Type Parameters:
E- The type of the elements in this set
- All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, NavigableSet<E>, Set<E>, SortedSet<E>, Unmodifiable
public final class UnmodifiableNavigableSet<E>
extends AbstractNavigableSetDecorator<E>
implements Unmodifiable
Decorates another
NavigableSet to ensure it can't be altered.
Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 4.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanAlways throwsUnsupportedOperationException.booleanaddAll(Collection<? extends E> coll) Always throwsUnsupportedOperationException.voidclear()Always throwsUnsupportedOperationException.iterator()Always throwsUnsupportedOperationException.pollLast()Always throwsUnsupportedOperationException.booleanAlways throwsUnsupportedOperationException.booleanremoveAll(Collection<?> coll) Always throwsUnsupportedOperationException.booleanAlways throwsUnsupportedOperationException.booleanretainAll(Collection<?> coll) Always throwsUnsupportedOperationException.static <E> NavigableSet<E> unmodifiableNavigableSet(NavigableSet<E> set) Factory method to create an unmodifiable set.Methods inherited from class AbstractSortedSetDecorator
comparator, first, lastMethods inherited from class AbstractSetDecorator
equals, hashCodeMethods inherited from class AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toArray, toArray, toStringMethods inherited from interface Collection
parallelStream, streamMethods inherited from interface Set
contains, containsAll, equals, hashCode, isEmpty, size, toArray, toArrayMethods inherited from interface SortedSet
comparator, first, last, spliterator
-
Method Details
-
add
Always throwsUnsupportedOperationException.- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceSet<E>- Overrides:
addin classAbstractCollectionDecorator<E>- Parameters:
object- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
addAll
Always throwsUnsupportedOperationException.- Specified by:
addAllin interfaceCollection<E>- Specified by:
addAllin interfaceSet<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>- Parameters:
coll- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
clear
Always throwsUnsupportedOperationException.- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceSet<E>- Overrides:
clearin classAbstractCollectionDecorator<E>- Throws:
UnsupportedOperationException- Always thrown.
-
descendingIterator
- Specified by:
descendingIteratorin interfaceNavigableSet<E>- Overrides:
descendingIteratorin classAbstractNavigableSetDecorator<E>
-
descendingSet
- Specified by:
descendingSetin interfaceNavigableSet<E>- Overrides:
descendingSetin classAbstractNavigableSetDecorator<E>
-
headSet
-
headSet
- Specified by:
headSetin interfaceNavigableSet<E>- Overrides:
headSetin classAbstractNavigableSetDecorator<E>
-
iterator
-
pollFirst
Always throwsUnsupportedOperationException.- Specified by:
pollFirstin interfaceNavigableSet<E>- Overrides:
pollFirstin classAbstractNavigableSetDecorator<E>- Throws:
UnsupportedOperationException- Always thrown.- Since:
- 4.5.0-M1
-
pollLast
Always throwsUnsupportedOperationException.- Specified by:
pollLastin interfaceNavigableSet<E>- Overrides:
pollLastin classAbstractNavigableSetDecorator<E>- Throws:
UnsupportedOperationException- Always thrown.- Since:
- 4.5.0-M1
-
remove
Always throwsUnsupportedOperationException.- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceSet<E>- Overrides:
removein classAbstractCollectionDecorator<E>- Parameters:
object- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
removeAll
Always throwsUnsupportedOperationException.- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceSet<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>- Parameters:
coll- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
removeIf
Always throwsUnsupportedOperationException.- Specified by:
removeIfin interfaceCollection<E>- Overrides:
removeIfin classAbstractCollectionDecorator<E>- Parameters:
filter- Ignored.- Throws:
UnsupportedOperationException- Always thrown.- Since:
- 4.4
-
retainAll
Always throwsUnsupportedOperationException.- Specified by:
retainAllin interfaceCollection<E>- Specified by:
retainAllin interfaceSet<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>- Parameters:
coll- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
subSet
public NavigableSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) - Specified by:
subSetin interfaceNavigableSet<E>- Overrides:
subSetin classAbstractNavigableSetDecorator<E>
-
subSet
-
tailSet
-
tailSet
- Specified by:
tailSetin interfaceNavigableSet<E>- Overrides:
tailSetin classAbstractNavigableSetDecorator<E>