public interface PriorityLinkedList<T>
Modifier and Type | Method and Description |
---|---|
void |
addHead(T t,
int priority) |
void |
addTail(T t,
int priority) |
void |
clear() |
boolean |
isEmpty() |
LinkedListIterator<T> |
iterator() |
T |
poll() |
int |
size() |
void addHead(T t, int priority)
void addTail(T t, int priority)
T poll()
void clear()
int size()
LinkedListIterator<T> iterator()
boolean isEmpty()
Copyright © 2016 The Apache Software Foundation. All rights reserved.