Class UnmodifiableSet<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.set.AbstractSetDecorator<E>
org.apache.commons.collections4.set.AbstractSerializableSetDecorator<E>
org.apache.commons.collections4.set.UnmodifiableSet<E>
- Type Parameters:
E- the type of the elements in this set
- All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, Set<E>, Unmodifiable
public final class UnmodifiableSet<E>
extends AbstractSerializableSetDecorator<E>
implements Unmodifiable
Decorates another
Set 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.
- Since:
- 3.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionbooleanbooleanaddAll(Collection<? extends E> coll) voidclear()iterator()booleanbooleanremoveAll(Collection<?> coll) booleanbooleanretainAll(Collection<?> coll) static <E> Set<E> unmodifiableSet(Set<? extends E> set) Factory method to create an unmodifiable set.Methods inherited from class AbstractSetDecorator
decorated, equals, hashCodeMethods inherited from class AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toArray, toArray, toStringMethods inherited from interface Collection
parallelStream, stream, toArrayMethods inherited from interface Set
contains, containsAll, isEmpty, size, spliterator, toArray, toArray
-
Method Details
-
unmodifiableSet
Factory method to create an unmodifiable set.- Type Parameters:
E- the element type- Parameters:
set- the set to decorate, must not be null- Returns:
- a new unmodifiable set
- Throws:
NullPointerException- if set is null- Since:
- 4.0
-
iterator
-
add
-
addAll
- Specified by:
addAllin interfaceCollection<E>- Specified by:
addAllin interfaceSet<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
clear
- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceSet<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
remove
-
removeIf
- Specified by:
removeIfin interfaceCollection<E>- Overrides:
removeIfin classAbstractCollectionDecorator<E>- Since:
- 4.4
-
removeAll
- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceSet<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>
-
retainAll
- Specified by:
retainAllin interfaceCollection<E>- Specified by:
retainAllin interfaceSet<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>
-