Uses of Interface
components.queue.Queue
Packages that use Queue
Package
Description
Provides the
Program family interfaces and implementing classes.Provides the
Queue family interfaces and implementing classes.Provides the
Statement family interfaces and implementing classes.Provides the
FormatChecker, Reporter, and Tokenizer utility classes.-
Uses of Queue in components.program
Methods in components.program with parameters of type Queue -
Uses of Queue in components.queue
Classes in components.queue that implement QueueModifier and TypeClassDescriptionclassQueue1L<T>Queuerepresented as ajava.util.Listwith implementations of primary methods.classQueue2<T>Queuerepresented as a singly linked list, done "bare-handed", with implementations of primary methods.classQueue3<T>Queuerepresented as aSequenceof entries, with implementations of primary methods.classLayered implementations of secondary methods forQueue.Methods in components.queue that return QueueModifier and TypeMethodDescriptionQueue1L.newInstance()Queue2.newInstance()Queue3.newInstance()Methods in components.queue with parameters of type QueueModifier and TypeMethodDescriptionvoidConcatenates ("appends")qto the end ofthis.voidfinal voidQueue1L.transferFrom(Queue<T> source) final voidQueue2.transferFrom(Queue<T> source) final voidQueue3.transferFrom(Queue<T> source) -
Uses of Queue in components.statement
Methods in components.statement with parameters of type QueueModifier and TypeMethodDescriptionvoidParses a single BL statement fromtokensintothis.voidvoidStatement.parseBlock(Queue<String> tokens) Parses a maximally long sequence of BL statements fromtokensinto the BLOCKthis.voidStatementSecondary.parseBlock(Queue<String> tokens) -
Uses of Queue in components.utilities
Methods in components.utilities that return QueueModifier and TypeMethodDescriptionTokenizer.tokens(SimpleReader in) Tokenizes the entire input getting rid of all whitespace separators and returning the non-separator tokens in aQueue<String>.