package datastructs;

public interface Queue
{
   // Insert at end
   public void insert(final Object anObject);

   // Delete from front
   public Object remove();

   // Test whether empty
   public boolean isEmpty();
}