Class FixedSizeList<E>

All Implemented Interfaces:
Serializable, Iterable<E>, Collection<E>, List<E>, BoundedCollection<E>

public class FixedSizeList<E> extends AbstractSerializableListDecorator<E> implements BoundedCollection<E>
Decorates another List to fix the size preventing add/remove.

The add, remove, clear and retain operations are unsupported. The set method is allowed (as it doesn't change the list size).

This class is Serializable from Commons Collections 3.1.

Since:
3.0
Version:
$Id: FixedSizeList.java 1686855 2015-06-22 13:00:27Z tn $
See Also: