public interface CharPriorityDequeue extends CharPriorityQueue
| Modifier and Type | Method and Description |
|---|---|
default java.lang.Character |
dequeueLast()
Deprecated.
|
char |
dequeueLastChar()
A Method to remove a element from the last place instead of the first
|
default void |
enqueueFirst(java.lang.Character e)
Deprecated.
|
void |
enqueueFirstChar(char e)
Method to insert a element into the first Index instead of the last.
|
default java.lang.Character |
last()
Deprecated.
|
default char |
lastChar()
Peeking function for the last element
|
comparator, dequeue, dequeueChar, enqueue, enqueueChar, first, firstChar, onChanged, peek, peekChar, remove, removeChar, removeLast, removeLastChar, toArray, toArray, toCharArray, toCharArrayclear, isEmpty, sizeforEach, forEach, iterator, spliteratorvoid enqueueFirstChar(char e)
e - the element that should be inserted into the first placechar dequeueLastChar()
java.util.NoSuchElementException - if no element is in the dequedefault char lastChar()
@Deprecated default void enqueueFirst(java.lang.Character e)
e - the boxed element that should be inserted@Deprecated default java.lang.Character dequeueLast()
java.util.NoSuchElementException - if no element is in the dequeue@Deprecated default java.lang.Character last()