Class UnmodifiableQueue<E>

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

public final class UnmodifiableQueue<E> extends AbstractQueueDecorator<E> implements Unmodifiable
Decorates another Queue to ensure it can't be altered.

Attempts to modify it will result in an UnsupportedOperationException.

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