Class FloatPriorityQueues.SynchronizedPriorityQueue

java.lang.Object
it.unimi.dsi.fastutil.floats.FloatPriorityQueues.SynchronizedPriorityQueue
All Implemented Interfaces:
FloatPriorityQueue, PriorityQueue<Float>
Enclosing class:
FloatPriorityQueues

public static class FloatPriorityQueues.SynchronizedPriorityQueue
extends Object
implements FloatPriorityQueue
A synchronized wrapper class for priority queues.
  • Method Summary

    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.
    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.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, toString, wait, wait, wait