FloatPriorityQueue, PriorityQueue<java.lang.Float>public static class FloatPriorityQueues.SynchronizedPriorityQueue extends java.lang.Object implements FloatPriorityQueue
| Modifier and Type | Method | 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.
|
java.lang.Float |
dequeue() |
Deprecated.
|
float |
dequeueFloat() |
Dequeues the first element from the queue.
|
void |
enqueue(float x) |
Enqueues a new element.
|
void |
enqueue(java.lang.Float x) |
Deprecated.
|
boolean |
equals(java.lang.Object o) |
|
java.lang.Float |
first() |
Deprecated.
|
float |
firstFloat() |
Returns the first element of the queue.
|
int |
hashCode() |
|
boolean |
isEmpty() |
Checks whether this queue is empty.
|
java.lang.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.
|
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()
FloatPriorityQueue
This 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<java.lang.Float>public int size()
PriorityQueuesize in interface PriorityQueue<java.lang.Float>public void clear()
PriorityQueueclear in interface PriorityQueue<java.lang.Float>public void changed()
PriorityQueueThis default implementation just throws an UnsupportedOperationException.
changed in interface PriorityQueue<java.lang.Float>public FloatComparator comparator()
FloatPriorityQueue
Note that this specification strengthens the one given in
PriorityQueue.comparator().
comparator in interface FloatPriorityQueuecomparator in interface PriorityQueue<java.lang.Float>PriorityQueue.comparator()@Deprecated public void enqueue(java.lang.Float x)
FloatPriorityQueueThis default implementation delegates to the corresponding type-specific method.
enqueue in interface FloatPriorityQueueenqueue in interface PriorityQueue<java.lang.Float>x - the element to enqueue.@Deprecated public java.lang.Float dequeue()
FloatPriorityQueueThis default implementation delegates to the corresponding type-specific method.
dequeue in interface FloatPriorityQueuedequeue in interface PriorityQueue<java.lang.Float>@Deprecated public java.lang.Float first()
FloatPriorityQueueThis default implementation delegates to the corresponding type-specific method.
first in interface FloatPriorityQueuefirst in interface PriorityQueue<java.lang.Float>@Deprecated public java.lang.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<java.lang.Float>public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object o)
equals in class java.lang.Object