interface java.util.Queue

 { boolean add(E x)
  
   E remove();

   E peek();
   
   boolean isEmpty();
}

The Queue interface is implemented by LinkedList


To declare a Queue we would say

Queue myQueue= new LinkedList();