PriorityQueuepublic final class SynchronizedPriorityQueue extends java.lang.Object implements PriorityQueue
| Modifier and Type | Field | Description |
|---|---|---|
protected PriorityQueue |
m_priorityQueue |
Deprecated.
The underlying priority queue.
|
| Constructor | Description |
|---|---|
SynchronizedPriorityQueue(PriorityQueue priorityQueue) |
Deprecated.
Constructs a new synchronized priority queue.
|
| Modifier and Type | Method | Description |
|---|---|---|
void |
clear() |
Deprecated.
Clear all elements from queue.
|
void |
insert(java.lang.Object element) |
Deprecated.
Insert an element into queue.
|
boolean |
isEmpty() |
Deprecated.
Test if queue is empty.
|
java.lang.Object |
peek() |
Deprecated.
Return element on top of heap but don't remove it.
|
java.lang.Object |
pop() |
Deprecated.
Return element on top of heap and remove it.
|
java.lang.String |
toString() |
Deprecated.
Returns a string representation of the underlying queue.
|
protected final PriorityQueue m_priorityQueue
public SynchronizedPriorityQueue(PriorityQueue priorityQueue)
priorityQueue - the priority queue to synchronizepublic void clear()
clear in interface PriorityQueuepublic boolean isEmpty()
isEmpty in interface PriorityQueuepublic void insert(java.lang.Object element)
insert in interface PriorityQueueelement - the element to be insertedpublic java.lang.Object peek()
throws java.util.NoSuchElementException
peek in interface PriorityQueuejava.util.NoSuchElementException - if isEmpty() == truepublic java.lang.Object pop()
throws java.util.NoSuchElementException
pop in interface PriorityQueuejava.util.NoSuchElementException - if isEmpty() == truepublic java.lang.String toString()
toString in class java.lang.ObjectCopyright © 2001-2018 Apache Software Foundation. All Rights Reserved.