mirror of https://github.com/apache/lucene.git
Fix some javadocs errors in contrib
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@880706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2797370935
commit
7370094ead
|
@ -215,7 +215,7 @@ public final class ShingleMatrixFilter extends TokenStream {
|
|||
* The filter /will/ delete columns from the input matrix! You will not be able to reset the filter if you used this constructor.
|
||||
* todo: don't touch the matrix! use a boolean, set the input stream to null or something, and keep track of where in the matrix we are at.
|
||||
*
|
||||
* @param matrix the input based for creating shingles. Does not need to contain any information until {@link org.apache.lucene.analysis.shingle.ShingleMatrixFilter#next(org.apache.lucene.analysis.Token)} is called the first time.
|
||||
* @param matrix the input based for creating shingles. Does not need to contain any information until {@link #incrementToken()} is called the first time.
|
||||
* @param minimumShingleSize minimum number of tokens in any shingle.
|
||||
* @param maximumShingleSize maximum number of tokens in any shingle.
|
||||
* @param spacerCharacter character to use between texts of the token parts in a shingle. null for none.
|
||||
|
@ -341,7 +341,7 @@ public final class ShingleMatrixFilter extends TokenStream {
|
|||
private int currentShingleLength;
|
||||
|
||||
/**
|
||||
* a set containing shingles that has been the result of a call to next(Token),
|
||||
* a set containing shingles that has been the result of a call to {@link #incrementToken()},
|
||||
* used to avoid producing the same shingle more than once.
|
||||
*/
|
||||
private Set<List<Token>> shinglesSeen = new HashSet<List<Token>>();
|
||||
|
@ -569,7 +569,7 @@ public final class ShingleMatrixFilter extends TokenStream {
|
|||
}
|
||||
|
||||
/**
|
||||
* Final touch of a shingle token before it is passed on to the consumer from method {@link #next(org.apache.lucene.analysis.Token)}.
|
||||
* Final touch of a shingle token before it is passed on to the consumer from method {@link #incrementToken()}.
|
||||
*
|
||||
* Calculates and sets type, flags, position increment, start/end offsets and weight.
|
||||
*
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.apache.lucene.document.Field;
|
|||
* A task which writes documents, one line per document. Each line is in the
|
||||
* following format: title <TAB> date <TAB> body. The output of this
|
||||
* task can be consumed by
|
||||
* {@link org.apache.lucene.benchmark.byTask.feeds.LineDocMaker} and is intended
|
||||
* {@link org.apache.lucene.benchmark.byTask.feeds.LineDocSource} and is intended
|
||||
* to save the IO overhead of opening a file per document to be indexed.<br>
|
||||
* Supports the following parameters:
|
||||
* <ul>
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.apache.lucene.queryParser.standard.processors.ParametricRangeQueryNod
|
|||
*
|
||||
* @see ParametricRangeQueryNodeProcessor
|
||||
* @see RangeCollatorAttribute
|
||||
* @see org.apache.lucene.search.RangeQuery
|
||||
* @see org.apache.lucene.search.TermRangeQuery
|
||||
*/
|
||||
public class RangeQueryNode extends ParametricRangeQueryNode {
|
||||
|
||||
|
|
Loading…
Reference in New Issue