Class UnmodifiableList<E>
java.lang.Object
org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
org.apache.commons.collections4.list.AbstractListDecorator<E>
org.apache.commons.collections4.list.AbstractSerializableListDecorator<E>
org.apache.commons.collections4.list.UnmodifiableList<E>
- Type Parameters:
E- The type of the elements in the list.
- All Implemented Interfaces:
Serializable,Iterable<E>,Collection<E>,List<E>,Unmodifiable
public final class UnmodifiableList<E>
extends AbstractSerializableListDecorator<E>
implements Unmodifiable
Decorates another
List 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:
-
Constructor Summary
ConstructorsConstructorDescriptionUnmodifiableList(List<? extends E> list) Constructor that wraps (not copies). -
Method Summary
Modifier and TypeMethodDescriptionvoidAlways throwsUnsupportedOperationException.booleanAlways throwsUnsupportedOperationException.booleanaddAll(int index, Collection<? extends E> coll) Always throwsUnsupportedOperationException.booleanaddAll(Collection<? extends E> coll) Always throwsUnsupportedOperationException.voidclear()Always throwsUnsupportedOperationException.iterator()listIterator(int index) remove(int index) Always throwsUnsupportedOperationException.booleanAlways throwsUnsupportedOperationException.booleanremoveAll(Collection<?> coll) Always throwsUnsupportedOperationException.booleanAlways throwsUnsupportedOperationException.booleanretainAll(Collection<?> coll) Always throwsUnsupportedOperationException.Always throwsUnsupportedOperationException.subList(int fromIndex, int toIndex) static <E> List<E> unmodifiableList(List<? extends E> list) Factory method to create an unmodifiable list.Methods inherited from class org.apache.commons.collections4.list.AbstractListDecorator
decorated, equals, get, hashCode, indexOf, lastIndexOfMethods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, streamMethods inherited from interface java.util.List
contains, containsAll, isEmpty, replaceAll, size, sort, spliterator, toArray, toArray
-
Constructor Details
-
UnmodifiableList
Constructor that wraps (not copies).- Parameters:
list- The list to decorate, must not be null- Throws:
NullPointerException- if list is null
-
-
Method Details
-
unmodifiableList
Factory method to create an unmodifiable list.- Type Parameters:
E- The type of the elements in the list- Parameters:
list- The list to decorate, must not be null- Returns:
- A new unmodifiable list
- Throws:
NullPointerException- if list is null- Since:
- 4.0
-
add
Always throwsUnsupportedOperationException.- Specified by:
addin interfaceList<E>- Overrides:
addin classAbstractListDecorator<E>- Parameters:
index- Ignored.object- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
add
Always throwsUnsupportedOperationException.- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceList<E>- Overrides:
addin classAbstractCollectionDecorator<E>- Parameters:
object- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
addAll
Always throwsUnsupportedOperationException.- Specified by:
addAllin interfaceCollection<E>- Specified by:
addAllin interfaceList<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>- Parameters:
coll- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
addAll
Always throwsUnsupportedOperationException.- Specified by:
addAllin interfaceList<E>- Overrides:
addAllin classAbstractListDecorator<E>- Parameters:
index- Ignored.coll- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
clear
Always throwsUnsupportedOperationException.- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceList<E>- Overrides:
clearin classAbstractCollectionDecorator<E>- Throws:
UnsupportedOperationException- Always thrown.
-
iterator
-
listIterator
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
listIterator
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
remove
Always throwsUnsupportedOperationException.- Specified by:
removein interfaceList<E>- Overrides:
removein classAbstractListDecorator<E>- Parameters:
index- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
remove
Always throwsUnsupportedOperationException.- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceList<E>- Overrides:
removein classAbstractCollectionDecorator<E>- Parameters:
object- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
removeAll
Always throwsUnsupportedOperationException.- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceList<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 interfaceList<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>- Parameters:
coll- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
set
Always throwsUnsupportedOperationException.- Specified by:
setin interfaceList<E>- Overrides:
setin classAbstractListDecorator<E>- Parameters:
index- Ignored.object- Ignored.- Throws:
UnsupportedOperationException- Always thrown.
-
subList
-