Class UnmodifiableList<E>
- java.lang.Object
-
- org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractListDecorator<E>
-
- org.apache.openjpa.lib.util.collections.AbstractSerializableListDecorator<E>
-
- org.apache.openjpa.lib.util.collections.UnmodifiableList<E>
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<E>,java.util.Collection<E>,java.util.List<E>,Unmodifiable
public final class UnmodifiableList<E> extends AbstractSerializableListDecorator<E> implements Unmodifiable
Decorates anotherListto 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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableList(java.util.List<? extends E> list)Constructor that wraps (not copies).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, E object)booleanadd(java.lang.Object object)booleanaddAll(int index, java.util.Collection<? extends E> coll)booleanaddAll(java.util.Collection<? extends E> coll)voidclear()java.util.Iterator<E>iterator()java.util.ListIterator<E>listIterator()java.util.ListIterator<E>listIterator(int index)Eremove(int index)booleanremove(java.lang.Object object)booleanremoveAll(java.util.Collection<?> coll)booleanremoveIf(java.util.function.Predicate<? super E> filter)booleanretainAll(java.util.Collection<?> coll)Eset(int index, E object)java.util.List<E>subList(int fromIndex, int toIndex)static <E> java.util.List<E>unmodifiableList(java.util.List<? extends E> list)Factory method to create an unmodifiable list.-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractListDecorator
decorated, equals, get, hashCode, indexOf, lastIndexOf
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toArray, toArray, toString
-
-
-
-
Constructor Detail
-
UnmodifiableList
public UnmodifiableList(java.util.List<? extends E> list)
Constructor that wraps (not copies).- Parameters:
list- the list to decorate, must not be null- Throws:
java.lang.NullPointerException- if list is null
-
-
Method Detail
-
unmodifiableList
public static <E> java.util.List<E> unmodifiableList(java.util.List<? extends E> list)
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:
java.lang.NullPointerException- if list is null- Since:
- 4.0
-
iterator
public java.util.Iterator<E> iterator()
-
add
public boolean add(java.lang.Object object)
- Specified by:
addin interfacejava.util.Collection<E>- Specified by:
addin interfacejava.util.List<E>- Overrides:
addin classAbstractCollectionDecorator<E>
-
addAll
public boolean addAll(java.util.Collection<? extends E> coll)
- Specified by:
addAllin interfacejava.util.Collection<E>- Specified by:
addAllin interfacejava.util.List<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<E>- Specified by:
clearin interfacejava.util.List<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
remove
public boolean remove(java.lang.Object object)
- Specified by:
removein interfacejava.util.Collection<E>- Specified by:
removein interfacejava.util.List<E>- Overrides:
removein classAbstractCollectionDecorator<E>
-
removeIf
public boolean removeIf(java.util.function.Predicate<? super E> filter)
- Specified by:
removeIfin interfacejava.util.Collection<E>- Overrides:
removeIfin classAbstractCollectionDecorator<E>- Since:
- 4.4
-
removeAll
public boolean removeAll(java.util.Collection<?> coll)
- Specified by:
removeAllin interfacejava.util.Collection<E>- Specified by:
removeAllin interfacejava.util.List<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>
-
retainAll
public boolean retainAll(java.util.Collection<?> coll)
- Specified by:
retainAllin interfacejava.util.Collection<E>- Specified by:
retainAllin interfacejava.util.List<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>
-
listIterator
public java.util.ListIterator<E> listIterator()
- Specified by:
listIteratorin interfacejava.util.List<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
listIterator
public java.util.ListIterator<E> listIterator(int index)
- Specified by:
listIteratorin interfacejava.util.List<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
add
public void add(int index, E object)- Specified by:
addin interfacejava.util.List<E>- Overrides:
addin classAbstractListDecorator<E>
-
addAll
public boolean addAll(int index, java.util.Collection<? extends E> coll)- Specified by:
addAllin interfacejava.util.List<E>- Overrides:
addAllin classAbstractListDecorator<E>
-
remove
public E remove(int index)
- Specified by:
removein interfacejava.util.List<E>- Overrides:
removein classAbstractListDecorator<E>
-
set
public E set(int index, E object)
- Specified by:
setin interfacejava.util.List<E>- Overrides:
setin classAbstractListDecorator<E>
-
subList
public java.util.List<E> subList(int fromIndex, int toIndex)
- Specified by:
subListin interfacejava.util.List<E>- Overrides:
subListin classAbstractListDecorator<E>
-
-