Uses of Class
goldman.collection.positional.SinglyLinkedList

Packages that use SinglyLinkedList
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. 
 

Uses of SinglyLinkedList in goldman.collection.positional
 

Subclasses of SinglyLinkedList in goldman.collection.positional
 class DoublyLinkedList<E>
          The doubly linked list is the only positional collection data structure that provides amortized constant time methods for all of the PositionalCollectionLocator methods except getCurrentPosition.