Uses of Interface
goldman.collection.tagged.ordered.TaggedOrderedCollection

Packages that use TaggedOrderedCollection
goldman.collection.tagged.ordered A tagged ordered collection is the tagged variation of an ordered collection. 
goldman.collection.tagged.ordered.digitized A tagged digitized ordered collection is the tagged variation of a digitized ordered collection. 
 

Uses of TaggedOrderedCollection in goldman.collection.tagged.ordered
 

Classes in goldman.collection.tagged.ordered that implement TaggedOrderedCollection
 class TaggedBinarySearchTree<T,E>
          A tagged version of a binary search tree.
 class TaggedBPlusTree<T,E>
          A tagged version of B+-tree.
 class TaggedBTree<T,E>
          A tagged version of a B-tree.
 class TaggedOrderedCollectionWrapper<T,E>
          The tagged ordered collection wrapper can wrap any ordered collection implementation, where each element in the collection is a tagged element.
 class TaggedRedBlackTree<T,E>
          A tagged version of a red-black tree.
 class TaggedSkipList<T,E>
          A tagged version of a skiplist.
 class TaggedSortedArray<T,E>
          A tagged version of a sorted array.
 class TaggedSplayTree<T,E>
          A tagged version of a splay tree.
 

Uses of TaggedOrderedCollection in goldman.collection.tagged.ordered.digitized
 

Subinterfaces of TaggedOrderedCollection in goldman.collection.tagged.ordered.digitized
 interface TaggedDigitizedOrderedCollection<T,E>
          The TaggedDigitizedOrderedCollection ADT is a tagged variation of the DigitizedOrderedCollection ADT.
 

Classes in goldman.collection.tagged.ordered.digitized that implement TaggedOrderedCollection
 class TaggedCompactTrie<T,E>
          A tagged version of a compact trie.
 class TaggedCompressedTrie<T,E>
          A tagged version of a compressed trie.
 class TaggedDigitizedOrderedCollectionWrapper<T,E>
          The tagged ordered collection wrapper can wrap any digitized ordered collection implementation, where each element in the collection is a tagged element.
 class TaggedPatriciaTrie<T,E>
          A tagged version of a Patricia trie.
 class TaggedTernarySearchTrie<T,E>
          A tagged version of a ternary search trie.
 class TaggedTrie<T,E>
          A tagged version of a trie.