TByteCollection
public interface TByteQueue extends TByteCollection
Queue
serialVersionUID
Modifier and Type | Method | Description |
---|---|---|
byte |
element() |
Retrieves and removes the head of this queue.
|
boolean |
offer(byte e) |
Inserts the specified element into this queue if it is possible to do so
immediately without violating capacity restrictions.
|
byte |
peek() |
Retrieves, but does not remove, the head of this queue, or returns
TByteCollection.getNoEntryValue() if this queue is empty. |
byte |
poll() |
Retrieves and removes the head of this queue, or returns
TByteCollection.getNoEntryValue()
if this queue is empty. |
add, addAll, addAll, addAll, clear, contains, containsAll, containsAll, containsAll, equals, forEach, getNoEntryValue, hashCode, isEmpty, iterator, remove, removeAll, removeAll, removeAll, retainAll, retainAll, retainAll, size, toArray, toArray
byte element()
poll()
only in that it throws an exception if this queue is empty.boolean offer(byte e)
TByteCollection.add(byte)
, which can fail to insert an element only by throwing an exception.e
- The element to add.byte peek()
TByteCollection.getNoEntryValue()
if this queue is empty.TByteCollection.getNoEntryValue()
if this queue is emptybyte poll()
TByteCollection.getNoEntryValue()
if this queue is empty.TByteCollection.getNoEntryValue()
if this queue is empty