The members of Java.Util.LinkedList are listed below.
See Also: Inherited members from Java.Util.AbstractSequentialList
Constructs a new empty instance of LinkedList. | ||
Documentation for this section has not yet been entered. |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
[read-only] | First | Java.Lang.Object. Returns the first element in this LinkedList. |
[read-only] | Last | Java.Lang.Object. Returns the last element in this LinkedList. |
[read-only] override | ThresholdClass | IntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
[read-only] override | ThresholdType | Type. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
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. | ||
Clone()Returns a new LinkedList with the same elements and size as this LinkedList. | ||
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 | ListIterator(int)Returns a ListIterator on the elements of this LinkedList. | |
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()Removes the first object from this LinkedList. | ||
RemoveFirstOccurrence(Java.Lang.Object)Removes the first occurrence of the specified element from this deque. | ||
RemoveLast()Removes the last object from this LinkedList. | ||
RemoveLastOccurrence(Java.Lang.Object)Removes the last occurrence of the specified element from this deque. | ||
override | Size()Returns the number of elements in this LinkedList. |