Searched defs:Row (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DRow.java64 * The Row class represents a row in a matrix representation of a trie.
66 public class Row { class
72 * Construct a Row object from input carried in via the given input stream.
77 public Row(DataInput is) throws IOException { method in class:Row
90 * The default constructor for the Row object.
92 public Row() {} method in class:Row
95 * Construct a Row using the cells of the given Row.
97 * @param old the Row to copy
99 public Row(Ro method in class:Row
[all...]
/lucene-3.6.0/lucene/contrib/analyzers/common/src/java/org/apache/lucene/analysis/shingle/
H A DShingleMatrixFilter.java33 import org.apache.lucene.analysis.shingle.ShingleMatrixFilter.Matrix.Column.Row;
335 private Iterator<Matrix.Column.Row[]> permutations;
340 private List<Matrix.Column.Row> currentPermutationRows;
505 for (Matrix.Column.Row row : deletedColumn.getRows()) {
557 Matrix.Column.Row[] rowsPermutation = permutations.next();
558 List<Matrix.Column.Row> currentPermutationRows = new ArrayList<Matrix.Column.Row>();
560 for (Matrix.Column.Row row : rowsPermutation) {
582 * @param currentPermutationRows index to Matrix.Column.Row from the position of tokens in parameter currentPermutationTokens
585 public void updateToken(Token token, List<Token> shingle, int currentPermutationStartOffset, List<Row> currentPermutationRow
778 public class Row { class in class:ShingleMatrixFilter.Matrix.Column
786 public Row() { method in class:ShingleMatrixFilter.Matrix.Column.Row
[all...]

Completed in 14 milliseconds