/** * A linear collection that supports the first-in, first-out policy. * The first element added by add and still in the collection is returned * by next or delete. * * Does not add any methods to Linear. Rather, adds a policy that * determines the values returned by next and delete. */ public interface Queue extends Linear { } // interface Queue