org.apache.commons.collections4.list
Class AbstractSerializableListDecorator<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>
- All Implemented Interfaces:
- Serializable, Iterable<E>, Collection<E>, List<E>
- Direct Known Subclasses:
- FixedSizeList, GrowthList, LazyList, SetUniqueList, UnmodifiableList
public abstract class AbstractSerializableListDecorator<E>
- extends AbstractListDecorator<E>
- implements Serializable
Serializable subclass of AbstractListDecorator.
- Since:
- 3.1
- Version:
- $Id: AbstractSerializableListDecorator.java 1494280 2013-06-18 20:07:04Z tn $
- See Also:
- Serialized Form
Methods inherited from class org.apache.commons.collections4.list.AbstractListDecorator |
add, addAll, decorated, get, indexOf, lastIndexOf, listIterator, listIterator, remove, set, subList |
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, setCollection, size, toArray, toArray, toString |
Methods inherited from interface java.util.List |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
AbstractSerializableListDecorator
protected AbstractSerializableListDecorator(List<E> list)
- Constructor that wraps (not copies).
- Parameters:
list
- the list to decorate, must not be null
- Throws:
IllegalArgumentException
- if list is null
Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.