Java.Util.LinkedList Members

The members of Java.Util.LinkedList are listed below.

See Also: Inherited members from Java.Util.AbstractSequentialList

Public Constructors

Constructs a new empty instance of LinkedList.
Documentation for this section has not yet been entered.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
FirstJava.Lang.Object. Returns the first element in this LinkedList.
[read-only]
LastJava.Lang.Object. Returns the last element in this LinkedList.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

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() : Java.Lang.Object
Returns a new LinkedList with the same elements and size as this LinkedList.
DescendingIterator() : IIterator
Returns an iterator over the elements in this deque in reverse sequential order.
Element() : Java.Lang.Object
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) : IListIterator
Returns a ListIterator on the elements of this LinkedList.
Offer(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
OfferFirst(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
OfferLast(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Peek() : Java.Lang.Object
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() : Java.Lang.Object
Retrieves, but does not remove, the first element of this deque, or returns null if this deque is empty.
PeekLast() : Java.Lang.Object
Retrieves, but does not remove, the last element of this deque, or returns null if this deque is empty.
Poll() : Java.Lang.Object
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() : Java.Lang.Object
Retrieves and removes the first element of this deque, or returns null if this deque is empty.
PollLast() : Java.Lang.Object
Retrieves and removes the last element of this deque, or returns null if this deque is empty.
Pop() : Java.Lang.Object
Pops 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.Object
Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque).
RemoveFirst() : Java.Lang.Object
Removes the first object from this LinkedList.
RemoveFirstOccurrence(Java.Lang.Object) : bool
Removes the first occurrence of the specified element from this deque.
RemoveLast() : Java.Lang.Object
Removes the last object from this LinkedList.
RemoveLastOccurrence(Java.Lang.Object) : bool
Removes the last occurrence of the specified element from this deque.
override
Size() : int
Returns the number of elements in this LinkedList.