Uses of Class
de.aitools.ir.retrievalmodels.representation.suffixtree.SuffixTreeNode

Packages that use SuffixTreeNode
de.aitools.ir.retrievalmodels.representation.suffixtree   
 

Uses of SuffixTreeNode in de.aitools.ir.retrievalmodels.representation.suffixtree
 

Methods in de.aitools.ir.retrievalmodels.representation.suffixtree that return SuffixTreeNode
 SuffixTreeNode SuffixTree.getRoot()
          Returns the root node of the suffix tree.
 SuffixTreeNode ConstructionAlgorithmWotd.initialiseSuffixTree(java.lang.Iterable<java.lang.String> texts)
          This method initialises the suffix tree.
 

Methods in de.aitools.ir.retrievalmodels.representation.suffixtree that return types with arguments of type SuffixTreeNode
 java.util.List<SuffixTreeNode> SuffixTreeNode.getChildren()
          Gets the set of children of this node.
 

Methods in de.aitools.ir.retrievalmodels.representation.suffixtree with parameters of type SuffixTreeNode
 void SuffixTreeNode.addChild(SuffixTreeNode newNode)
          Adds a childnode to the nodes set of children.