|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectit.unimi.dsi.fastutil.floats.FloatPriorityQueues.SynchronizedPriorityQueue
public static class FloatPriorityQueues.SynchronizedPriorityQueue
A synchronized wrapper class for priority queues.
| Field Summary | |
|---|---|
static long |
serialVersionUID
|
| Method Summary | |
|---|---|
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 sorted set, or null if it uses its elements' natural ordering. |
Float |
dequeue()
Dequeues the PriorityQueue.first() element from the queue. |
float |
dequeueFloat()
Dequeues the first element from the queue. |
void |
enqueue(float x)
Enqueues a new element. |
void |
enqueue(Float x)
Enqueues a new element. |
Float |
first()
Returns the first element of the queue. |
float |
firstFloat()
Returns the front element of the queue. |
boolean |
isEmpty()
Checks whether the queue is empty. |
Float |
last()
Returns the last element of the queue, that is, the element the would be dequeued last (optional operation). |
float |
lastFloat()
Returns the rear 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. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final long serialVersionUID
| Method Detail |
|---|
public void enqueue(float x)
FloatPriorityQueue
enqueue in interface FloatPriorityQueuex - the element to enqueue..public float dequeueFloat()
FloatPriorityQueue
dequeueFloat in interface FloatPriorityQueuepublic float firstFloat()
FloatPriorityQueue
firstFloat in interface FloatPriorityQueuepublic float lastFloat()
FloatPriorityQueue
lastFloat in interface FloatPriorityQueuepublic boolean isEmpty()
PriorityQueue
isEmpty in interface PriorityQueue<Float>public int size()
PriorityQueue
size in interface PriorityQueue<Float>public void clear()
PriorityQueue
clear in interface PriorityQueue<Float>public void changed()
PriorityQueue
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>null if it uses its elements' natural ordering.PriorityQueue.comparator()public void enqueue(Float x)
PriorityQueue
enqueue in interface PriorityQueue<Float>x - the element to enqueue..public Float dequeue()
PriorityQueuePriorityQueue.first() element from the queue.
dequeue in interface PriorityQueue<Float>public Float first()
PriorityQueue
first in interface PriorityQueue<Float>public Float last()
PriorityQueue
last in interface PriorityQueue<Float>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||