// Interface for a class that implements a queue of Objects with no bound // on the size of the queue. A queue is a “first in, first out” structure. public interface UnboundedQueueInterface extends QueueInterface { // Adds element to the rear of the queue void enqueue(Object element); }