@Deprecated public class SlowCollatedTermRangeQuery extends MultiTermQuery
This query matches the documents looking for terms that fall into the
supplied range according to String.compareTo(String), unless a Collator is provided. It is not intended
for numerical ranges; use NumericRangeQuery instead.
This query uses the MultiTermQuery.CONSTANT_SCORE_AUTO_REWRITE_DEFAULT
rewrite method.
MultiTermQuery.ConstantScoreAutoRewrite, MultiTermQuery.RewriteMethod, MultiTermQuery.TopTermsBoostOnlyBooleanQueryRewrite, MultiTermQuery.TopTermsScoringBooleanQueryRewriteCONSTANT_SCORE_AUTO_REWRITE_DEFAULT, CONSTANT_SCORE_BOOLEAN_QUERY_REWRITE, CONSTANT_SCORE_FILTER_REWRITE, field, rewriteMethod, SCORING_BOOLEAN_QUERY_REWRITE| Constructor and Description |
|---|
SlowCollatedTermRangeQuery(String field,
String lowerTerm,
String upperTerm,
boolean includeLower,
boolean includeUpper,
Collator collator)
Deprecated.
Constructs a query selecting all terms greater/equal than
lowerTerm but less/equal than upperTerm. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Deprecated.
|
String |
field()
Deprecated.
Use
MultiTermQuery.getField() instead. |
Collator |
getCollator()
Deprecated.
Returns the collator used to determine range inclusion
|
String |
getLowerTerm()
Deprecated.
Returns the lower value of this range query
|
protected TermsEnum |
getTermsEnum(Terms terms,
AttributeSource atts)
Deprecated.
Construct the enumeration to be used, expanding the
pattern term.
|
String |
getUpperTerm()
Deprecated.
Returns the upper value of this range query
|
int |
hashCode()
Deprecated.
|
boolean |
includesLower()
Deprecated.
Returns
true if the lower endpoint is inclusive |
boolean |
includesUpper()
Deprecated.
Returns
true if the upper endpoint is inclusive |
String |
toString(String field)
Deprecated.
Prints a user-readable version of this query.
|
getField, getRewriteMethod, getTermsEnum, rewrite, setRewriteMethodclone, createWeight, extractTerms, getBoost, setBoost, toStringpublic SlowCollatedTermRangeQuery(String field, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, Collator collator)
lowerTerm but less/equal than upperTerm.
If an endpoint is null, it is said to be "open". Either or both endpoints may be open. Open endpoints may not be exclusive (you can't select all but the first or last term without explicitly specifying the term to exclude.)
lowerTerm - The Term text at the lower end of the rangeupperTerm - The Term text at the upper end of the rangeincludeLower - If true, the lowerTerm is
included in the range.includeUpper - If true, the upperTerm is
included in the range.collator - The collator to use to collate index Terms, to determine
their membership in the range bounded by lowerTerm and
upperTerm.public String getLowerTerm()
public String getUpperTerm()
public boolean includesLower()
true if the lower endpoint is inclusivepublic boolean includesUpper()
true if the upper endpoint is inclusivepublic Collator getCollator()
protected TermsEnum getTermsEnum(Terms terms, AttributeSource atts) throws IOException
MultiTermQueryTermsEnum.EMPTY if no
terms match). The TermsEnum must already be
positioned to the first matching term.
The given AttributeSource is passed by the MultiTermQuery.RewriteMethod to
provide attributes, the rewrite method uses to inform about e.g. maximum competitive boosts.
This is currently only used by TopTermsRewritegetTermsEnum in class MultiTermQueryIOException@Deprecated public String field()
MultiTermQuery.getField() instead.public String toString(String field)
public int hashCode()
hashCode in class MultiTermQuerypublic boolean equals(Object obj)
equals in class MultiTermQueryCopyright © 2000-2015 The Apache Software Foundation. All Rights Reserved.