Java.Util.IQueue: Method Members

The methods of Java.Util.IQueue are listed below. For a list of all members, see the IQueue Members list.

Public Methods

Add(Java.Lang.Object) : bool
Documentation for this section has not yet been entered.
Element() : Java.Lang.Object
Retrieves, but does not remove, the head of this queue.
Offer(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 this queue, or returns null if this queue is empty.
Poll() : Java.Lang.Object
Retrieves and removes the head of this queue, or returns null if this queue is empty.
Remove() : Java.Lang.Object
Retrieves and removes the head of this queue.