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>
- 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 TypeMethodDescriptionvoidbooleanbooleanaddAll(int index, Collection<? extends E> coll) booleanaddAll(Collection<? extends E> coll) voidclear()iterator()listIterator(int index) remove(int index) booleanbooleanremoveAll(Collection<?> coll) booleanretainAll(Collection<?> coll) 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, toString
-
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
-
iterator
-
add
- Specified by:
addin interfaceCollection<E>- Specified by:
addin interfaceList<E>- Overrides:
addin classAbstractCollectionDecorator<E>
-
addAll
- Specified by:
addAllin interfaceCollection<E>- Specified by:
addAllin interfaceList<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
clear
- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceList<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
remove
- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceList<E>- Overrides:
removein classAbstractCollectionDecorator<E>
-
removeAll
- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceList<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>
-
retainAll
- Specified by:
retainAllin interfaceCollection<E>- Specified by:
retainAllin interfaceList<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>
-
listIterator
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
listIterator
- Specified by:
listIteratorin interfaceList<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
add
-
addAll
-
remove
-
set
-
subList
-