Class ShortPriorityQueues.SynchronizedPriorityQueue

    • 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.
      ShortComparator comparator()
      Returns the comparator associated with this priority queue, or null if it uses its elements' natural ordering.
      Short dequeue()
      Deprecated.
      short dequeueShort()
      Dequeues the first element from the queue.
      void enqueue​(short x)
      Enqueues a new element.
      void enqueue​(Short x)
      Deprecated.
      boolean equals​(Object o)  
      Short first()
      Deprecated.
      short firstShort()
      Returns the first element of the queue.
      int hashCode()  
      boolean isEmpty()
      Checks whether this queue is empty.
      Short last()
      Deprecated.
      short lastShort()
      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.