The methods of Java.Util.Concurrent.ConcurrentLinkedDeque are listed below. For a list of all members, see the ConcurrentLinkedDeque Members list.
See Also: Inherited members from Java.Util.AbstractCollection
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. | ||
DescendingIterator()Returns an iterator over the elements in this deque in reverse sequential order. | ||
Element()Retrieves, but does not remove, the head of the queue represented by this deque (in other words, the first element of this deque). | ||
override | Iterator()Returns an iterator over the elements in this deque in proper sequence. | |
Offer(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
OfferFirst(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
OfferLast(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
Peek()Retrieves, 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()Retrieves, but does not remove, the first element of this deque, or returns null if this deque is empty. | ||
PeekLast()Retrieves, but does not remove, the last element of this deque, or returns null if this deque is empty. | ||
Poll()Retrieves 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()Retrieves and removes the first element of this deque, or returns null if this deque is empty. | ||
PollLast()Retrieves and removes the last element of this deque, or returns null if this deque is empty. | ||
Pop()Pops an element from the stack represented by this deque. | ||
Push(Java.Lang.Object)Documentation for this section has not yet been entered. | ||
Remove()Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque). | ||
RemoveFirst()Retrieves and removes the first element of this deque. | ||
RemoveFirstOccurrence(Java.Lang.Object)Removes the first element e such that o.equals(e), if such an element exists in this deque. | ||
RemoveLast()Retrieves and removes the last element of this deque. | ||
RemoveLastOccurrence(Java.Lang.Object)Removes the last element e such that o.equals(e), if such an element exists in this deque. | ||
override | Size()Returns the number of elements in this deque. |