Class UnmodifiableList<E>

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

public final class UnmodifiableList<E> extends AbstractSerializableListDecorator<E> implements Unmodifiable
Decorates another List to ensure it can't be altered.

This class is Serializable from Commons Collections 3.1.

Attempts to modify it will result in an UnsupportedOperationException.

Since:
3.0
See Also: