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
Serializable subclass of AbstractListDecorator.
- Since:
- 3.1
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
Constructor that wraps (not copies). -
Method Summary
Methods inherited from class org.apache.commons.collections4.list.AbstractListDecorator
add, addAll, decorated, equals, get, hashCode, indexOf, lastIndexOf, listIterator, listIterator, remove, set, subList
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, setCollection, size, toArray, toArray, toString
-
Constructor Details
-
AbstractSerializableListDecorator
Constructor that wraps (not copies).- Parameters:
list
- the list to decorate, must not be null- Throws:
NullPointerException
- if list is null
-