package rebelsky.linear; /** * Queues are linear structures that implement the "first in, * first out" policy. * * @author Samuel A. Rebelsky * @version 1.0 of October 2004 */ public interface Queue extends Linear { /** * Remove and return the value that was least recently * added by the put method. */ public Object get() throws Exception; } // interface Queue