Class UnmodifiableCollection<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.collection.UnmodifiableCollection<E>
- Type Parameters:
E- the type of the elements in the collection
- All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, Unmodifiable
public final class UnmodifiableCollection<E>
extends AbstractCollectionDecorator<E>
implements Unmodifiable
Decorates another
Collection 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:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final longSerialization version -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateUnmodifiableCollection(Collection<? extends E> coll) Constructor that wraps (not copies). -
Method Summary
Modifier and TypeMethodDescriptionbooleanbooleanaddAll(Collection<? extends E> coll) voidclear()iterator()booleanbooleanremoveAll(Collection<?> coll) booleanbooleanretainAll(Collection<?> coll) static <T> Collection<T> unmodifiableCollection(Collection<? extends T> coll) Factory method to create an unmodifiable collection.Methods inherited from class AbstractCollectionDecorator
contains, containsAll, decorated, isEmpty, setCollection, size, toArray, toArray, toStringMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Collection
equals, hashCode, parallelStream, spliterator, stream
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerialization version- See Also:
-
-
Constructor Details
-
UnmodifiableCollection
Constructor that wraps (not copies).- Parameters:
coll- the collection to decorate, must not be null- Throws:
NullPointerException- if collection is null
-
-
Method Details
-
unmodifiableCollection
Factory method to create an unmodifiable collection.If the collection passed in is already unmodifiable, it is returned.
- Type Parameters:
T- the type of the elements in the collection- Parameters:
coll- the collection to decorate, must not be null- Returns:
- an unmodifiable collection
- Throws:
NullPointerException- if collection is null- Since:
- 4.0
-
iterator
-
add
- Specified by:
addin interfaceCollection<E>- Overrides:
addin classAbstractCollectionDecorator<E>
-
addAll
- Specified by:
addAllin interfaceCollection<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
clear
public void clear()- Specified by:
clearin interfaceCollection<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
remove
- Specified by:
removein interfaceCollection<E>- Overrides:
removein classAbstractCollectionDecorator<E>
-
removeIf
- Specified by:
removeIfin interfaceCollection<E>- Overrides:
removeIfin classAbstractCollectionDecorator<E>- Since:
- 4.4
-
removeAll
- Specified by:
removeAllin interfaceCollection<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>
-
retainAll
- Specified by:
retainAllin interfaceCollection<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>
-