E - the type of elements held in this queuepublic final class UnmodifiableQueue<E> extends AbstractQueueDecorator<E> implements Unmodifiable
Queue to ensure it can't be altered.
 Attempts to modify it will result in an UnsupportedOperationException.
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
add(java.lang.Object object)  | 
boolean | 
addAll(java.util.Collection<? extends E> coll)  | 
void | 
clear()  | 
java.util.Iterator<E> | 
iterator()  | 
boolean | 
offer(E obj)  | 
E | 
poll()  | 
E | 
remove()  | 
boolean | 
remove(java.lang.Object object)  | 
boolean | 
removeAll(java.util.Collection<?> coll)  | 
boolean | 
removeIf(java.util.function.Predicate<? super E> filter)  | 
boolean | 
retainAll(java.util.Collection<?> coll)  | 
static <E> java.util.Queue<E> | 
unmodifiableQueue(java.util.Queue<? extends E> queue)
Factory method to create an unmodifiable queue. 
 | 
element, peekcontains, containsAll, isEmpty, size, toArray, toArray, toStringequals, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic static <E> java.util.Queue<E> unmodifiableQueue(java.util.Queue<? extends E> queue)
If the queue passed in is already unmodifiable, it is returned.
E - the type of the elements in the queuequeue - the queue to decorate, must not be nulljava.lang.NullPointerException - if queue is nullpublic java.util.Iterator<E> iterator()
iterator in interface java.lang.Iterable<E>iterator in interface java.util.Collection<E>iterator in class AbstractCollectionDecorator<E>public boolean add(java.lang.Object object)
add in interface java.util.Collection<E>add in interface java.util.Queue<E>add in class AbstractCollectionDecorator<E>public boolean addAll(java.util.Collection<? extends E> coll)
addAll in interface java.util.Collection<E>addAll in class AbstractCollectionDecorator<E>public void clear()
clear in interface java.util.Collection<E>clear in class AbstractCollectionDecorator<E>public boolean remove(java.lang.Object object)
remove in interface java.util.Collection<E>remove in class AbstractCollectionDecorator<E>public boolean removeIf(java.util.function.Predicate<? super E> filter)
removeIf in interface java.util.Collection<E>removeIf in class AbstractCollectionDecorator<E>public boolean removeAll(java.util.Collection<?> coll)
removeAll in interface java.util.Collection<E>removeAll in class AbstractCollectionDecorator<E>public boolean retainAll(java.util.Collection<?> coll)
retainAll in interface java.util.Collection<E>retainAll in class AbstractCollectionDecorator<E>public boolean offer(E obj)
offer in interface java.util.Queue<E>offer in class AbstractQueueDecorator<E>public E poll()
poll in interface java.util.Queue<E>poll in class AbstractQueueDecorator<E>public E remove()
remove in interface java.util.Queue<E>remove in class AbstractQueueDecorator<E>Copyright © 2010 - 2023 Adobe. All Rights Reserved