public interface Queue extends Cloneable
void enqueue(Object o)
Object dequeue() throws NoSuchElementException
NoSuchElementException
Object peek() throws NoSuchElementException
NoSuchElementException
boolean hasMoreElements()
int size()
Object clone()