Uses of Package
goldman.collection.positional

Packages that use goldman.collection.positional
goldman.collection.positional A positional collection is a manually positioned collection in which elements are accessed via their position in a line (with 0 being the position of the first element in the line) or via their location relative to other elements in the line. 
goldman.collection.priority A priority queue is an untagged algorithmically positioned collection of comparable elements in which there can be equivalent elements. 
goldman.graph A graph represents general relationships between pairs of elements from among a set of elements. 
 

Classes in goldman.collection.positional used by goldman.collection.positional
AbstractPositionalCollection
          The AbstractPositionalCollection provides a basis for defining concrete positional collections by defining a useful set of methods that can be implemented for any positional collection in terms of the public methods from the PositionalCollection interface.
Array
          The simplest of the positional collections, Array provides space for a fixed number of elements, which are stored in an underlying Java primitive array.
Array.BasicMarker
           
CircularArray
          This array-based data structure allows element 0 of the positional collection to be in any slot of the underlying array, with the range of underlying indices wrapping around as needed.
DoublyLinkedList.DLListItem
           
DynamicCircularArray
          This array-based data structure allows element 0 of the positional collection to be in any slot of the underlying array, with the range of underlying indices wrapping around as needed, and also performs automatic resizing.
PositionalCollection
          Often an application needs to maintain a collection of elements that are accessed via their position in a line (with 0 being the position of the first element in the line) or via their location relative to other elements in the line.
PositionalCollectionLocator
          The PositionalCollectionLocator interface extends the Locator interface to add methods that are specific to a positional collection.
SinglyLinkedList
          The simplest of the list-based positional collections, SinglyLinkedList maintains a linked list where each list node only references the next element in the list.
SinglyLinkedList.ListItem
          The ListItem interface must be supported by any class defining objects to be used in a singly linked list or a doubly linked list.
 

Classes in goldman.collection.positional used by goldman.collection.priority
PositionalCollectionLocator
          The PositionalCollectionLocator interface extends the Locator interface to add methods that are specific to a positional collection.
 

Classes in goldman.collection.positional used by goldman.graph
PositionalCollection
          Often an application needs to maintain a collection of elements that are accessed via their position in a line (with 0 being the position of the first element in the line) or via their location relative to other elements in the line.