public interface ShortPriorityDequeue extends ShortPriorityQueue
| Modifier and Type | Method and Description |
|---|---|
default java.lang.Short |
dequeueLast()
Deprecated.
|
short |
dequeueLastShort()
A Method to remove a element from the last place instead of the first
|
default void |
enqueueFirst(java.lang.Short e)
Deprecated.
|
void |
enqueueFirstShort(short e)
Method to insert a element into the first Index instead of the last.
|
default java.lang.Short |
last()
Deprecated.
|
default short |
lastShort()
Peeking function for the last element
|
comparator, dequeue, dequeueShort, enqueue, enqueueShort, first, firstShort, onChanged, peek, peekShort, remove, removeLast, removeLastShort, removeShort, toArray, toArray, toShortArray, toShortArrayclear, isEmpty, sizeforEach, forEach, iterator, spliteratorvoid enqueueFirstShort(short e)
e - the element that should be inserted into the first placeshort dequeueLastShort()
java.util.NoSuchElementException - if no element is in the dequedefault short lastShort()
@Deprecated default void enqueueFirst(java.lang.Short e)
e - the boxed element that should be inserted@Deprecated default java.lang.Short dequeueLast()
java.util.NoSuchElementException - if no element is in the dequeue@Deprecated default java.lang.Short last()