java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractQueue<E>
- Type Parameters:
E
- the type of elements held in this queue
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,Queue<E>
- Direct Known Subclasses:
ArrayBlockingQueue
,ConcurrentLinkedQueue
,DelayQueue
,LinkedBlockingDeque
,LinkedBlockingQueue
,LinkedTransferQueue
,PriorityBlockingQueue
,PriorityQueue
,SynchronousQueue
This class provides skeletal implementations of some
Queue
operations. The implementations in this class are appropriate when
the base implementation does not allow null
elements. Methods add
, remove
, and
element
are based on offer
, poll
, and peek
, respectively, but throw
exceptions instead of indicating failure via false
or
null
returns.
A Queue
implementation that extends this class must
minimally define a method Queue.offer(E)
which does not permit
insertion of null
elements, along with methods Queue.peek()
, Queue.poll()
, Collection.size()
, and
Collection.iterator()
. Typically, additional methods will be
overridden as well. If these requirements cannot be met, consider
instead subclassing AbstractCollection
.
This class is a member of the Java Collections Framework.
- Since:
- 1.5
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
Inserts the specified element into this queue if it is possible to do so immediately without violating capacity restrictions, returningtrue
upon success and throwing anIllegalStateException
if no space is currently available.boolean
addAll
(Collection<? extends E> c) Adds all of the elements in the specified collection to this queue.void
clear()
Removes all of the elements from this queue.element()
Retrieves, but does not remove, the head of this queue.remove()
Retrieves and removes the head of this queue.Methods declared in class java.util.AbstractCollection
contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, toArray, toArray, toString
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface java.util.