public interface DoublePriorityQueue extends PriorityQueue<Double>
PriorityQueue; provides some additional methods that use polymorphism to avoid (un)boxing.
Additionally, this interface strengthens comparator().
| Modifier and Type | Method and Description |
|---|---|
DoubleComparator |
comparator()
Returns the comparator associated with this priority queue, or null if it uses its elements' natural ordering.
|
default Double |
dequeue()
Deprecated.
Please use the corresponding type-specific method instead.
|
double |
dequeueDouble()
Dequeues the first element from the queue.
|
void |
enqueue(double x)
Enqueues a new element.
|
default void |
enqueue(Double x)
Deprecated.
Please use the corresponding type-specific method instead.
|
default Double |
first()
Deprecated.
Please use the corresponding type-specific method instead.
|
double |
firstDouble()
Returns the first element of the queue.
|
default Double |
last()
Deprecated.
Please use the corresponding type-specific method instead.
|
default double |
lastDouble()
Returns the last element of the queue, that is, the element the would be dequeued last (optional operation).
|
changed, clear, isEmpty, sizevoid enqueue(double x)
x - the element to enqueue.PriorityQueue.enqueue(Object)double dequeueDouble()
NoSuchElementException - if the queue is empty.dequeue()double firstDouble()
NoSuchElementException - if the queue is empty.first()default double lastDouble()
This default implementation just throws an UnsupportedOperationException.
NoSuchElementException - if the queue is empty.last()DoubleComparator comparator()
Note that this specification strengthens the one given in PriorityQueue.comparator().
comparator in interface PriorityQueue<Double>PriorityQueue.comparator()@Deprecated default void enqueue(Double x)
This default implementation delegates to the corresponding type-specific method.
enqueue in interface PriorityQueue<Double>x - the element to enqueue.@Deprecated default Double dequeue()
This default implementation delegates to the corresponding type-specific method.
dequeue in interface PriorityQueue<Double>@Deprecated default Double first()
This default implementation delegates to the corresponding type-specific method.
first in interface PriorityQueue<Double>@Deprecated default Double last()
This default implementation just throws an UnsupportedOperationException.
This default implementation delegates to the corresponding type-specific method.
last in interface PriorityQueue<Double>Copyright © 2020. All rights reserved.