Java.Util.IQueue Members

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

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.