Uses of Class
org.egothor.stemmer.Row
-
Packages that use Row Package Description org.egothor.stemmer Egothor stemmer API. -
-
Uses of Row in org.egothor.stemmer
Subclasses of Row in org.egothor.stemmer Modifier and Type Class Description (package private) class
Reduce.Remap
This class is part of the Egothor ProjectFields in org.egothor.stemmer with type parameters of type Row Modifier and Type Field Description (package private) java.util.List<Row>
Trie. rows
Methods in org.egothor.stemmer that return Row Modifier and Type Method Description private Row
Trie. getRow(int index)
Return the Row at the given index.Row
Optimizer. merge(Row master, Row existing)
Merge the given rows and return the resulting Row.Methods in org.egothor.stemmer that return types with arguments of type Row Modifier and Type Method Description (package private) java.util.List<Row>
Reduce. removeGaps(int ind, java.util.List<Row> old, java.util.List<Row> to, int[] remap)
Methods in org.egothor.stemmer with parameters of type Row Modifier and Type Method Description boolean
Gener. eat(Row in, int[] remap)
Test whether the given Row of Cells in a Trie should be included in an optimized Trie.void
Lift. liftUp(Row in, java.util.List<Row> nodes)
Reduce the trie using Lift-Up reduction.Row
Optimizer. merge(Row master, Row existing)
Merge the given rows and return the resulting Row.Method parameters in org.egothor.stemmer with type arguments of type Row Modifier and Type Method Description void
Lift. liftUp(Row in, java.util.List<Row> nodes)
Reduce the trie using Lift-Up reduction.(package private) java.util.List<Row>
Reduce. removeGaps(int ind, java.util.List<Row> old, java.util.List<Row> to, int[] remap)
Constructors in org.egothor.stemmer with parameters of type Row Constructor Description Remap(Row old, int[] remap)
Constructor for the Remap objectRow(Row old)
Construct a Row using the cells of the given Row.
-