Class UnmodifiableQueue<E>
- java.lang.Object
-
- org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
-
- org.apache.commons.collections4.queue.AbstractQueueDecorator<E>
-
- org.apache.commons.collections4.queue.UnmodifiableQueue<E>
-
- Type Parameters:
E- the type of elements held in this queue
- All Implemented Interfaces:
java.io.Serializable,java.lang.Iterable<E>,java.util.Collection<E>,java.util.Queue<E>,Unmodifiable
public final class UnmodifiableQueue<E> extends AbstractQueueDecorator<E> implements Unmodifiable
Decorates anotherQueueto ensure it can't be altered.Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 4.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(java.lang.Object object)booleanaddAll(java.util.Collection<? extends E> coll)voidclear()java.util.Iterator<E>iterator()booleanoffer(E obj)Epoll()Eremove()booleanremove(java.lang.Object object)booleanremoveAll(java.util.Collection<?> coll)booleanremoveIf(java.util.function.Predicate<? super E> filter)booleanretainAll(java.util.Collection<?> coll)static <E> java.util.Queue<E>unmodifiableQueue(java.util.Queue<? extends E> queue)Factory method to create an unmodifiable queue.-
Methods inherited from class org.apache.commons.collections4.queue.AbstractQueueDecorator
element, peek
-
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
contains, containsAll, isEmpty, size, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
unmodifiableQueue
public static <E> java.util.Queue<E> unmodifiableQueue(java.util.Queue<? extends E> queue)
Factory method to create an unmodifiable queue.If the queue passed in is already unmodifiable, it is returned.
- Type Parameters:
E- the type of the elements in the queue- Parameters:
queue- the queue to decorate, must not be null- Returns:
- an unmodifiable Queue
- Throws:
java.lang.NullPointerException- if queue is null
-
iterator
public java.util.Iterator<E> iterator()
- Specified by:
iteratorin interfacejava.util.Collection<E>- Specified by:
iteratorin interfacejava.lang.Iterable<E>- Overrides:
iteratorin classAbstractCollectionDecorator<E>
-
add
public boolean add(java.lang.Object object)
- Specified by:
addin interfacejava.util.Collection<E>- Specified by:
addin interfacejava.util.Queue<E>- Overrides:
addin classAbstractCollectionDecorator<E>
-
addAll
public boolean addAll(java.util.Collection<? extends E> coll)
- Specified by:
addAllin interfacejava.util.Collection<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
remove
public boolean remove(java.lang.Object object)
- Specified by:
removein interfacejava.util.Collection<E>- Overrides:
removein classAbstractCollectionDecorator<E>
-
removeIf
public boolean removeIf(java.util.function.Predicate<? super E> filter)
- Specified by:
removeIfin interfacejava.util.Collection<E>- Overrides:
removeIfin classAbstractCollectionDecorator<E>- Since:
- 4.4
-
removeAll
public boolean removeAll(java.util.Collection<?> coll)
- Specified by:
removeAllin interfacejava.util.Collection<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>
-
retainAll
public boolean retainAll(java.util.Collection<?> coll)
- Specified by:
retainAllin interfacejava.util.Collection<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>
-
offer
public boolean offer(E obj)
- Specified by:
offerin interfacejava.util.Queue<E>- Overrides:
offerin classAbstractQueueDecorator<E>
-
poll
public E poll()
- Specified by:
pollin interfacejava.util.Queue<E>- Overrides:
pollin classAbstractQueueDecorator<E>
-
remove
public E remove()
- Specified by:
removein interfacejava.util.Queue<E>- Overrides:
removein classAbstractQueueDecorator<E>
-
-