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