Class AbstractSerializableListDecorator<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>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.List<E>
- Direct Known Subclasses:
UnmodifiableList
public abstract class AbstractSerializableListDecorator<E> extends AbstractListDecorator<E>
Serializable subclass of AbstractListDecorator.- Since:
- 3.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractSerializableListDecorator(java.util.List<E> list)
Constructor that wraps (not copies).
-
Method Summary
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractListDecorator
add, addAll, decorated, equals, get, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, set, subList
-
Methods inherited from class org.apache.openjpa.lib.util.collections.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, removeIf, retainAll, setCollection, size, toArray, toArray, toString
-
-
-
-
Constructor Detail
-
AbstractSerializableListDecorator
protected AbstractSerializableListDecorator(java.util.List<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
-
-