mirror of https://github.com/apache/lucene.git
fix javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2c1dc30639
commit
8d45546b72
|
@ -46,8 +46,8 @@ public final class FuzzyQuery extends MultiTermQuery {
|
|||
* as the query term is considered similar to the query term if the edit distance
|
||||
* between both terms is less than <code>length(term)*0.5</code>
|
||||
* @param prefixLength length of common (non-fuzzy) prefix
|
||||
* @throws IllegalArgumentException if minimumSimilarity is > 1 or < 0
|
||||
* or if prefixLength < 0 or > <code>term.text().length()</code>.
|
||||
* @throws IllegalArgumentException if minimumSimilarity is >= 1 or < 0
|
||||
* or if prefixLength < 0
|
||||
*/
|
||||
public FuzzyQuery(Term term, float minimumSimilarity, int prefixLength) throws IllegalArgumentException {
|
||||
super(term);
|
||||
|
@ -56,10 +56,10 @@ public final class FuzzyQuery extends MultiTermQuery {
|
|||
throw new IllegalArgumentException("minimumSimilarity >= 1");
|
||||
else if (minimumSimilarity < 0.0f)
|
||||
throw new IllegalArgumentException("minimumSimilarity < 0");
|
||||
if (prefixLength < 0)
|
||||
throw new IllegalArgumentException("prefixLength < 0");
|
||||
|
||||
this.minimumSimilarity = minimumSimilarity;
|
||||
if(prefixLength < 0)
|
||||
throw new IllegalArgumentException("prefixLength < 0");
|
||||
this.prefixLength = prefixLength;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue