mirror of https://github.com/apache/lucene.git
Javadoc correction as suggested by Bug#32353
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150660 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6e71206441
commit
b674ad711f
|
@ -50,7 +50,7 @@ public abstract class FilteredTermEnum extends TermEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the docFreq of the current Term in the enumeration.
|
* Returns the docFreq of the current Term in the enumeration.
|
||||||
* Initially invalid, valid after next() called for the first time.
|
* Returns -1 if no Term matches or all terms have been enumerated.
|
||||||
*/
|
*/
|
||||||
public int docFreq() {
|
public int docFreq() {
|
||||||
if (actualEnum == null) return -1;
|
if (actualEnum == null) return -1;
|
||||||
|
@ -77,7 +77,7 @@ public abstract class FilteredTermEnum extends TermEnum {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the current Term in the enumeration.
|
/** Returns the current Term in the enumeration.
|
||||||
* Initially invalid, valid after next() called for the first time. */
|
* Returns null if no Term matches or all terms have been enumerated. */
|
||||||
public Term term() {
|
public Term term() {
|
||||||
return currentTerm;
|
return currentTerm;
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,6 +54,9 @@ public final class FuzzyTermEnum extends FilteredTermEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a FuzzyTermEnum with an empty prefix and a minSimilarity of 0.5f.
|
* Creates a FuzzyTermEnum with an empty prefix and a minSimilarity of 0.5f.
|
||||||
|
* <p>
|
||||||
|
* After calling the constructor the enumeration is already pointing to the first
|
||||||
|
* valid term if such a term exists.
|
||||||
*
|
*
|
||||||
* @param reader
|
* @param reader
|
||||||
* @param term
|
* @param term
|
||||||
|
@ -66,6 +69,9 @@ public final class FuzzyTermEnum extends FilteredTermEnum {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a FuzzyTermEnum with an empty prefix.
|
* Creates a FuzzyTermEnum with an empty prefix.
|
||||||
|
* <p>
|
||||||
|
* After calling the constructor the enumeration is already pointing to the first
|
||||||
|
* valid term if such a term exists.
|
||||||
*
|
*
|
||||||
* @param reader
|
* @param reader
|
||||||
* @param term
|
* @param term
|
||||||
|
@ -81,6 +87,9 @@ public final class FuzzyTermEnum extends FilteredTermEnum {
|
||||||
* Constructor for enumeration of all terms from specified <code>reader</code> which share a prefix of
|
* Constructor for enumeration of all terms from specified <code>reader</code> which share a prefix of
|
||||||
* length <code>prefixLength</code> with <code>term</code> and which have a fuzzy similarity >
|
* length <code>prefixLength</code> with <code>term</code> and which have a fuzzy similarity >
|
||||||
* <code>minSimilarity</code>.
|
* <code>minSimilarity</code>.
|
||||||
|
* <p>
|
||||||
|
* After calling the constructor the enumeration is already pointing to the first
|
||||||
|
* valid term if such a term exists.
|
||||||
*
|
*
|
||||||
* @param reader Delivers terms.
|
* @param reader Delivers terms.
|
||||||
* @param term Pattern term.
|
* @param term Pattern term.
|
||||||
|
|
|
@ -42,6 +42,9 @@ public class WildcardTermEnum extends FilteredTermEnum {
|
||||||
* Creates a new <code>WildcardTermEnum</code>. Passing in a
|
* Creates a new <code>WildcardTermEnum</code>. Passing in a
|
||||||
* {@link org.apache.lucene.index.Term Term} that does not contain a
|
* {@link org.apache.lucene.index.Term Term} that does not contain a
|
||||||
* <code>WILDCARD_CHAR</code> will cause an exception to be thrown.
|
* <code>WILDCARD_CHAR</code> will cause an exception to be thrown.
|
||||||
|
* <p>
|
||||||
|
* After calling the constructor the enumeration is already pointing to the first
|
||||||
|
* valid term if such a term exists.
|
||||||
*/
|
*/
|
||||||
public WildcardTermEnum(IndexReader reader, Term term) throws IOException {
|
public WildcardTermEnum(IndexReader reader, Term term) throws IOException {
|
||||||
super();
|
super();
|
||||||
|
|
Loading…
Reference in New Issue