public interface IntPriorityDequeue extends IntPriorityQueue
| Modifier and Type | Method and Description |
|---|---|
default java.lang.Integer |
dequeueLast()
Deprecated.
|
int |
dequeueLastInt()
A Method to remove a element from the last place instead of the first
|
default void |
enqueueFirst(java.lang.Integer e)
Deprecated.
|
void |
enqueueFirstInt(int e)
Method to insert a element into the first Index instead of the last.
|
default java.lang.Integer |
last()
Deprecated.
|
default int |
lastInt()
Peeking function for the last element
|
comparator, dequeue, dequeueInt, enqueue, enqueueInt, first, firstInt, onChanged, peek, peekInt, remove, removeInt, removeLast, removeLastInt, toArray, toArray, toIntArray, toIntArrayclear, isEmpty, sizeforEach, forEach, iterator, spliteratorvoid enqueueFirstInt(int e)
e - the element that should be inserted into the first placeint dequeueLastInt()
java.util.NoSuchElementException - if no element is in the dequedefault int lastInt()
@Deprecated default void enqueueFirst(java.lang.Integer e)
e - the boxed element that should be inserted@Deprecated default java.lang.Integer dequeueLast()
java.util.NoSuchElementException - if no element is in the dequeue@Deprecated default java.lang.Integer last()