public static class FloatPriorityQueues.SynchronizedPriorityQueue extends Object implements FloatPriorityQueue
| Modifier and Type | Field and Description |
|---|---|
protected FloatPriorityQueue |
q |
protected Object |
sync |
| Modifier | Constructor and Description |
|---|---|
protected |
SynchronizedPriorityQueue(FloatPriorityQueue q) |
protected |
SynchronizedPriorityQueue(FloatPriorityQueue q,
Object sync) |
| Modifier and Type | Method and Description |
|---|---|
void |
changed()
Notifies the queue that the first element has changed (optional operation).
|
void |
clear()
Removes all elements from this queue.
|
FloatComparator |
comparator()
Returns the comparator associated with this priority queue, or null if it uses its elements' natural ordering.
|
Float |
dequeue()
Deprecated.
|
float |
dequeueFloat()
Dequeues the first element from the queue.
|
void |
enqueue(float x)
Enqueues a new element.
|
void |
enqueue(Float x)
Deprecated.
|
boolean |
equals(Object o) |
Float |
first()
Deprecated.
|
float |
firstFloat()
Returns the first element of the queue.
|
int |
hashCode() |
boolean |
isEmpty()
Checks whether this queue is empty.
|
Float |
last()
Deprecated.
|
float |
lastFloat()
Returns the last element of the queue, that is, the element the would be dequeued last (optional operation).
|
int |
size()
Returns the number of elements in this queue.
|
protected final FloatPriorityQueue q
protected final Object sync
protected SynchronizedPriorityQueue(FloatPriorityQueue q, Object sync)
protected SynchronizedPriorityQueue(FloatPriorityQueue q)
public void enqueue(float x)
FloatPriorityQueueenqueue in interface FloatPriorityQueuex - the element to enqueue.PriorityQueue.enqueue(Object)public float dequeueFloat()
FloatPriorityQueuedequeueFloat in interface FloatPriorityQueueFloatPriorityQueue.dequeue()public float firstFloat()
FloatPriorityQueuefirstFloat in interface FloatPriorityQueueFloatPriorityQueue.first()public float lastFloat()
FloatPriorityQueueThis default implementation just throws an UnsupportedOperationException.
lastFloat in interface FloatPriorityQueueFloatPriorityQueue.last()public boolean isEmpty()
PriorityQueueThis default implementation checks whether PriorityQueue.size() is zero.
isEmpty in interface PriorityQueue<Float>public int size()
PriorityQueuesize in interface PriorityQueue<Float>public void clear()
PriorityQueueclear in interface PriorityQueue<Float>public void changed()
PriorityQueueThis default implementation just throws an UnsupportedOperationException.
changed in interface PriorityQueue<Float>public FloatComparator comparator()
FloatPriorityQueueNote that this specification strengthens the one given in PriorityQueue.comparator().
comparator in interface FloatPriorityQueuecomparator in interface PriorityQueue<Float>PriorityQueue.comparator()@Deprecated public void enqueue(Float x)
FloatPriorityQueueThis default implementation delegates to the corresponding type-specific method.
enqueue in interface FloatPriorityQueueenqueue in interface PriorityQueue<Float>x - the element to enqueue.@Deprecated public Float dequeue()
FloatPriorityQueueThis default implementation delegates to the corresponding type-specific method.
dequeue in interface FloatPriorityQueuedequeue in interface PriorityQueue<Float>@Deprecated public Float first()
FloatPriorityQueueThis default implementation delegates to the corresponding type-specific method.
first in interface FloatPriorityQueuefirst in interface PriorityQueue<Float>@Deprecated public Float last()
FloatPriorityQueueThis default implementation just throws an UnsupportedOperationException.
This default implementation delegates to the corresponding type-specific method.
last in interface FloatPriorityQueuelast in interface PriorityQueue<Float>Copyright © 2020. All rights reserved.