Package | Description |
---|---|
components.queue |
Queue data structure component family and their implementations. |
Modifier and Type | Class and Description |
---|---|
class |
Queue1L<T>
An implementation of a Queue layered on a java.util.LinkedList.
|
class |
QueueDL<T>
An implementation of a Queue layered on the DoublyLinkedList component.
|
class |
QueueSecondary<T>
Abstract class providing the implementation of all of the layered secondary
methods that were defined in the Queue interface, as well as the
implementation for equals, toString, and hashCode methods.
|
Modifier and Type | Method and Description |
---|---|
Queue<T> |
Queue1L.newInstance() |
Modifier and Type | Method and Description |
---|---|
void |
QueueSecondary.append(Queue<T> collection) |
void |
Queue.append(Queue<T> collection)
Appends the entries in
collection to the end of this . |
void |
QueueDL.transferFrom(Queue<T> source) |
void |
Queue1L.transferFrom(Queue<T> source) |