|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.lucene.search.Filter org.apache.lucene.search.MultiTermQueryWrapperFilter<TermRangeQuery> org.apache.lucene.search.TermRangeFilter
public class TermRangeFilter
A Filter that restricts search results to a range of term values in a given field.
This filter 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 NumericRangeFilter
instead.
If you construct a large number of range filters with different ranges but on the
same field, FieldCacheRangeFilter
may have significantly better performance.
Field Summary |
---|
Fields inherited from class org.apache.lucene.search.MultiTermQueryWrapperFilter |
---|
query |
Constructor Summary | |
---|---|
TermRangeFilter(String fieldName,
String lowerTerm,
String upperTerm,
boolean includeLower,
boolean includeUpper)
|
|
TermRangeFilter(String fieldName,
String lowerTerm,
String upperTerm,
boolean includeLower,
boolean includeUpper,
Collator collator)
WARNING: Using this constructor and supplying a non-null value in the collator parameter will cause every single
index Term in the Field referenced by lowerTerm and/or upperTerm to be
examined. |
Method Summary | |
---|---|
Collator |
getCollator()
Returns the collator used to determine range inclusion, if any. |
String |
getField()
Returns the field name for this filter |
String |
getLowerTerm()
Returns the lower value of this range filter |
String |
getUpperTerm()
Returns the upper value of this range filter |
boolean |
includesLower()
Returns true if the lower endpoint is inclusive |
boolean |
includesUpper()
Returns true if the upper endpoint is inclusive |
static TermRangeFilter |
Less(String fieldName,
String upperTerm)
Constructs a filter for field fieldName matching
less than or equal to upperTerm . |
static TermRangeFilter |
More(String fieldName,
String lowerTerm)
Constructs a filter for field fieldName matching
greater than or equal to lowerTerm . |
Methods inherited from class org.apache.lucene.search.MultiTermQueryWrapperFilter |
---|
clearTotalNumberOfTerms, equals, getDocIdSet, getTotalNumberOfTerms, hashCode, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TermRangeFilter(String fieldName, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper)
fieldName
- The field this range applies tolowerTerm
- The lower bound on this rangeupperTerm
- The upper bound on this rangeincludeLower
- Does this range include the lower bound?includeUpper
- Does this range include the upper bound?
IllegalArgumentException
- if both terms are null or if
lowerTerm is null and includeLower is true (similar for upperTerm
and includeUpper)public TermRangeFilter(String fieldName, String lowerTerm, String upperTerm, boolean includeLower, boolean includeUpper, Collator collator)
collator
parameter will cause every single
index Term in the Field referenced by lowerTerm and/or upperTerm to be
examined. Depending on the number of index Terms in this Field, the
operation could be very slow.
lowerTerm
- The lower bound on this rangeupperTerm
- The upper bound on this rangeincludeLower
- Does this range include the lower bound?includeUpper
- Does this range include the upper bound?collator
- The collator to use when determining range inclusion; set
to null to use Unicode code point ordering instead of collation.
IllegalArgumentException
- if both terms are null or if
lowerTerm is null and includeLower is true (similar for upperTerm
and includeUpper)Method Detail |
---|
public static TermRangeFilter Less(String fieldName, String upperTerm)
fieldName
matching
less than or equal to upperTerm
.
public static TermRangeFilter More(String fieldName, String lowerTerm)
fieldName
matching
greater than or equal to lowerTerm
.
public String getField()
public String getLowerTerm()
public String getUpperTerm()
public boolean includesLower()
true
if the lower endpoint is inclusive
public boolean includesUpper()
true
if the upper endpoint is inclusive
public Collator getCollator()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |