| Add(Java.Lang.Object) : boolDocumentation for this section has not yet been entered. |
| AddFirst(Java.Lang.Object)Documentation for this section has not yet been entered. |
| AddLast(Java.Lang.Object)Documentation for this section has not yet been entered. |
| Contains(Java.Lang.Object) : boolReturns true if this deque contains the specified element. |
| DescendingIterator() : IIteratorReturns an iterator over the elements in this deque in reverse
sequential order. |
| Element() : Java.Lang.ObjectRetrieves, but does not remove, the head of the queue represented by
this deque (in other words, the first element of this deque). |
| Iterator() : IIteratorReturns an iterator over the elements in this deque in proper sequence. |
| Offer(Java.Lang.Object) : boolDocumentation for this section has not yet been entered. |
| OfferFirst(Java.Lang.Object) : boolDocumentation for this section has not yet been entered. |
| OfferLast(Java.Lang.Object) : boolDocumentation for this section has not yet been entered. |
| Peek() : Java.Lang.ObjectRetrieves, but does not remove, the head of the queue represented by
this deque (in other words, the first element of this deque), or
returns null if this deque is empty. |
| PeekFirst() : Java.Lang.ObjectRetrieves, but does not remove, the first element of this deque,
or returns null if this deque is empty. |
| PeekLast() : Java.Lang.ObjectRetrieves, but does not remove, the last element of this deque,
or returns null if this deque is empty. |
| Poll() : Java.Lang.ObjectRetrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), or returns
null if this deque is empty. |
| PollFirst() : Java.Lang.ObjectRetrieves and removes the first element of this deque,
or returns null if this deque is empty. |
| PollLast() : Java.Lang.ObjectRetrieves and removes the last element of this deque,
or returns null if this deque is empty. |
| Pop() : Java.Lang.ObjectPops an element from the stack represented by this deque. |
| Push(Java.Lang.Object)Documentation for this section has not yet been entered. |
| Remove() : Java.Lang.ObjectRetrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque). |
| Remove(Java.Lang.Object) : boolRemoves the first occurrence of the specified element from this deque. |
| RemoveFirst() : Java.Lang.ObjectRetrieves and removes the first element of this deque. |
| RemoveFirstOccurrence(Java.Lang.Object) : boolRemoves the first occurrence of the specified element from this deque. |
| RemoveLast() : Java.Lang.ObjectRetrieves and removes the last element of this deque. |
| RemoveLastOccurrence(Java.Lang.Object) : boolRemoves the last occurrence of the specified element from this deque. |
| Size() : intReturns the number of elements in this deque. |