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

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

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

Methods in de.aitools.ir.retrievalmodels.representation.suffixtree that return Suffix
 Suffix Suffix.getSucceedingSuffix()
          Gets the reference to the suffix which succeeds this instance in the text.
 

Methods in de.aitools.ir.retrievalmodels.representation.suffixtree that return types with arguments of type Suffix
 java.util.List<Suffix> SuffixTreeNode.getSuffixes()
          Returns all suffixes this node represents.
static java.util.List<Suffix> SuffixParser.getSuffixReferences(java.lang.Iterable<java.lang.String> texts)
          Returns all references to all suffixes of the texts inside the Collection texts.
static java.util.List<Suffix> SuffixParser.getSuffixReferences(java.lang.String text)
           
 

Methods in de.aitools.ir.retrievalmodels.representation.suffixtree with parameters of type Suffix
static java.lang.String SuffixParser.getFirstWord(Suffix currSuffix)
          Returns the first word of the suffix currSuffix as String.
 void Suffix.setSucceedingSuffix(Suffix succSuffix)
          Sets a reference to the suffix which succeeds this instance in the text.
 

Method parameters in de.aitools.ir.retrievalmodels.representation.suffixtree with type arguments of type Suffix
static java.lang.String SuffixParser.getCommonPrefix(java.util.List<Suffix> suffixes)
          Returns the common prefix shared by all texts which are represented by this node.
static java.lang.String SuffixParser.getCommonPrefix(java.util.List<Suffix> suffixes, int commonPrefixLength)
          Returns the supposed common prefix of the suffixes.
static java.util.List<java.lang.String> SuffixParser.getCommonPrefixWords(java.util.List<Suffix> suffixes, int commonPrefixLength)
           
 void SuffixTreeNode.setSuffixes(java.util.List<Suffix> suffixes)
          Sets the suffixes this node should represent in a suffix tree.