// Zorah Fung, CSE 143 // A FIFO collection of elements public interface Queue extends Collection { public boolean add(E value); public E remove(); public E peek(); public int size(); public boolean isEmpty(); }