public class DoublyLinkedListQueue<E> extends java.lang.Object
DoublyLinkedListQueue()
void
clear()
boolean
contains(E value)
E
dequeue()
enqueue(E value)
isEmpty()
peek()
remove(E value)
int
size()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public DoublyLinkedListQueue()
public void enqueue(E value)
public E dequeue()
public E peek()
public boolean contains(E value)
public E remove(E value)
public boolean isEmpty()
public int size()
public void clear()