This interface defines methods to access the elements at both ends of the deque. Methods are provided to insert, remove, and examine the element. Each of these methods exists in two forms: one throws an exception if the operation fails, the other returns a special value (either null or false, depending on the operation). The latter form of the insert operation is designed specifically for use with capacity-restricted Deque implementations; in most implementations, insert operations cannot fail.
The twelve methods described above are summarized in the following table:
| First Element (Head) | Last Element (Tail) | |||
| Throws exception | Special value | Throws exception | Special value | |
| Insert | addFirst(e) | offerFirst(e) | addLast(e) | offerLast(e) |
| Remove | removeFirst() | pollFirst() | removeLast() | pollLast() |
| Examine | getFirst() | peekFirst() | getLast() | peekLast() |
This interface extends the interface. When a deque is
used as a queue, FIFO (First-In-First-Out) behavior results. Elements are
added at the end of the deque and removed from the beginning. The methods
inherited from the Queue interface are precisely equivalent to
Deque methods as indicated in the following table:
Queue
| Queue Method | Equivalent Deque Method |
add(e) | addLast(e) |
offer(e) | offerLast(e) |
remove() | removeFirst() |
poll() | pollFirst() |
element() | getFirst() |
peek() | peekFirst() |
Deques can also be used as LIFO (Last-In-First-Out) stacks. This
interface should be used in preference to the legacy class.
When a deque is used as a stack, elements are pushed and popped from the
beginning of the deque. Stack methods are precisely equivalent to
Deque methods as indicated in the table below:
Stack
| Stack Method | Equivalent Deque Method |
push(e) | addFirst(e) |
pop() | removeFirst() |
peek() | peekFirst() |
Note that the peek method works equally well when
a deque is used as a queue or a stack; in either case, elements are
drawn from the beginning of the deque.
This interface provides two methods to remove interior
elements, removeFirstOccurrence and
removeLastOccurrence.
Unlike the interface, this interface does not
provide support for indexed access to elements.
List
While Deque implementations are not strictly required to prohibit the insertion of null elements, they are strongly encouraged to do so. Users of any Deque implementations that do allow null elements are strongly encouraged not to take advantage of the ability to insert nulls. This is so because null is used as a special return value by various methods to indicated that the deque is empty.
Deque implementations generally do not define element-based versions of the equals and hashCode methods, but instead inherit the identity-based versions from class Object.
This interface is a member of the Java Collections Framework.
<E> the type of elements held in this collectionofferFirst(java.lang.Object).
e the element to addjava.lang.IllegalStateException if the element cannot be added at this
time due to capacity restrictionsjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequeofferLast(java.lang.Object).
This method is equivalent to .
add(java.lang.Object)
e the element to addjava.lang.IllegalStateException if the element cannot be added at this
time due to capacity restrictionsjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequeaddFirst(java.lang.Object) method,
which can fail to insert an element only by throwing an exception.
e the element to addjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequeaddLast(java.lang.Object) method,
which can fail to insert an element only by throwing an exception.
e the element to addjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequepollFirst only in that it throws an
exception if this deque is empty.
NoSuchElementException if this deque is emptypollLast only in that it throws an
exception if this deque is empty.
NoSuchElementException if this deque is emptypeekFirst only in that it
throws an exception if this deque is empty.
NoSuchElementException if this deque is emptypeekLast only in that it
throws an exception if this deque is empty.
NoSuchElementException if this deque is emptyo element to be removed from this deque, if presentjava.lang.ClassCastException if the class of the specified element
is incompatible with this deque (optional)java.lang.NullPointerException if the specified element is null and this
deque does not permit null elements (optional)o element to be removed from this deque, if presentjava.lang.ClassCastException if the class of the specified element
is incompatible with this deque (optional)java.lang.NullPointerException if the specified element is null and this
deque does not permit null elements (optional)offer.
This method is equivalent to .
addLast(java.lang.Object)
e the element to addCollection.add(java.lang.Object))java.lang.IllegalStateException if the element cannot be added at this
time due to capacity restrictionsjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequeadd(java.lang.Object) method, which can fail to
insert an element only by throwing an exception.
This method is equivalent to .
offerLast(java.lang.Object)
e the element to addjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequepoll only in that it throws an
exception if this deque is empty.
This method is equivalent to .
removeFirst()
NoSuchElementException if this deque is emptyThis method is equivalent to .
pollFirst()
peek only in that it throws an
exception if this deque is empty.
This method is equivalent to .
getFirst()
NoSuchElementException if this deque is emptyThis method is equivalent to .
peekFirst()
This method is equivalent to .
addFirst(java.lang.Object)
e the element to pushjava.lang.IllegalStateException if the element cannot be added at this
time due to capacity restrictionsjava.lang.ClassCastException if the class of the specified element
prevents it from being added to this dequejava.lang.NullPointerException if the specified element is null and this
deque does not permit null elementsjava.lang.IllegalArgumentException if some property of the specified
element prevents it from being added to this dequeThis method is equivalent to .
removeFirst()
NoSuchElementException if this deque is emptyThis method is equivalent to .
removeFirstOccurrence(java.lang.Object)
o element to be removed from this deque, if presentjava.lang.ClassCastException if the class of the specified element
is incompatible with this deque (optional)java.lang.NullPointerException if the specified element is null and this
deque does not permit null elements (optional)o element whose presence in this deque is to be testedjava.lang.ClassCastException if the type of the specified element
is incompatible with this deque (optional)java.lang.NullPointerException if the specified element is null and this
deque does not permit null elements (optional)