org.apache.commons.collections4.list
Class AbstractSerializableListDecorator<E>

java.lang.Object
  extended by org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
      extended by org.apache.commons.collections4.list.AbstractListDecorator<E>
          extended by 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

Constructor Summary
protected AbstractSerializableListDecorator(List<E> list)
          Constructor that wraps (not copies).
 
Method Summary
 
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 class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Constructor Detail

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.