|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use NumericRangeQuery | |
|---|---|
| org.apache.lucene.search | Code to search indices. |
| Uses of NumericRangeQuery in org.apache.lucene.search |
|---|
| Methods in org.apache.lucene.search that return NumericRangeQuery | |
|---|---|
static NumericRangeQuery |
NumericRangeQuery.newDoubleRange(java.lang.String field,
java.lang.Double min,
java.lang.Double max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a double
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
static NumericRangeQuery |
NumericRangeQuery.newDoubleRange(java.lang.String field,
int precisionStep,
java.lang.Double min,
java.lang.Double max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a double
range using the given precisionStep. |
static NumericRangeQuery |
NumericRangeQuery.newFloatRange(java.lang.String field,
java.lang.Float min,
java.lang.Float max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a float
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
static NumericRangeQuery |
NumericRangeQuery.newFloatRange(java.lang.String field,
int precisionStep,
java.lang.Float min,
java.lang.Float max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a float
range using the given precisionStep. |
static NumericRangeQuery |
NumericRangeQuery.newIntRange(java.lang.String field,
java.lang.Integer min,
java.lang.Integer max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a int
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
static NumericRangeQuery |
NumericRangeQuery.newIntRange(java.lang.String field,
int precisionStep,
java.lang.Integer min,
java.lang.Integer max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a int
range using the given precisionStep. |
static NumericRangeQuery |
NumericRangeQuery.newLongRange(java.lang.String field,
int precisionStep,
java.lang.Long min,
java.lang.Long max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a long
range using the given precisionStep. |
static NumericRangeQuery |
NumericRangeQuery.newLongRange(java.lang.String field,
java.lang.Long min,
java.lang.Long max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a NumericRangeQuery, that queries a long
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||