
package arrayqueue;


public interface Queue<F> {
    
    
    public int size();
    public boolean isEmpty();
    public F front() throws EmptyQueueException;
    public void enqueue(F element);
    public F dequeue() throws EmptyQueueException;
    
}
