public final class SynchronizedPriorityQueue extends java.lang.Object implements PriorityQueue
| Modifier and Type | Field and Description |
|---|---|
private PriorityQueue |
m_priorityQueue |
| Constructor and Description |
|---|
SynchronizedPriorityQueue(PriorityQueue priorityQueue) |
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Clear all elements from queue.
|
void |
insert(java.lang.Object element)
Insert an element into queue.
|
boolean |
isEmpty()
Test if queue is empty.
|
java.lang.Object |
peek()
Return element on top of heap but don't remove it.
|
java.lang.Object |
pop()
Return element on top of heap and remove it.
|
java.lang.String |
toString() |
private final PriorityQueue m_priorityQueue
public SynchronizedPriorityQueue(PriorityQueue priorityQueue)
public 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.Object