Package | Description |
---|---|
org.apache.lucene.queryparser.flexible.standard.builders |
Standard Lucene Query Node Builders.
|
org.apache.lucene.search |
Code to search indices.
|
Modifier and Type | Method and Description |
---|---|
LegacyNumericRangeQuery<? extends java.lang.Number> |
LegacyNumericRangeQueryNodeBuilder.build(QueryNode queryNode)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static LegacyNumericRangeQuery<java.lang.Double> |
LegacyNumericRangeQuery.newDoubleRange(java.lang.String field,
java.lang.Double min,
java.lang.Double max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a double
range using the default precisionStep LegacyNumericUtils.PRECISION_STEP_DEFAULT (16). |
static LegacyNumericRangeQuery<java.lang.Double> |
LegacyNumericRangeQuery.newDoubleRange(java.lang.String field,
int precisionStep,
java.lang.Double min,
java.lang.Double max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a double
range using the given precisionStep . |
static LegacyNumericRangeQuery<java.lang.Float> |
LegacyNumericRangeQuery.newFloatRange(java.lang.String field,
java.lang.Float min,
java.lang.Float max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a float
range using the default precisionStep LegacyNumericUtils.PRECISION_STEP_DEFAULT_32 (8). |
static LegacyNumericRangeQuery<java.lang.Float> |
LegacyNumericRangeQuery.newFloatRange(java.lang.String field,
int precisionStep,
java.lang.Float min,
java.lang.Float max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a float
range using the given precisionStep . |
static LegacyNumericRangeQuery<java.lang.Integer> |
LegacyNumericRangeQuery.newIntRange(java.lang.String field,
java.lang.Integer min,
java.lang.Integer max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a int
range using the default precisionStep LegacyNumericUtils.PRECISION_STEP_DEFAULT_32 (8). |
static LegacyNumericRangeQuery<java.lang.Integer> |
LegacyNumericRangeQuery.newIntRange(java.lang.String field,
int precisionStep,
java.lang.Integer min,
java.lang.Integer max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a int
range using the given precisionStep . |
static LegacyNumericRangeQuery<java.lang.Long> |
LegacyNumericRangeQuery.newLongRange(java.lang.String field,
int precisionStep,
java.lang.Long min,
java.lang.Long max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a long
range using the given precisionStep . |
static LegacyNumericRangeQuery<java.lang.Long> |
LegacyNumericRangeQuery.newLongRange(java.lang.String field,
java.lang.Long min,
java.lang.Long max,
boolean minInclusive,
boolean maxInclusive)
Deprecated.
Factory that creates a
LegacyNumericRangeQuery , that queries a long
range using the default precisionStep LegacyNumericUtils.PRECISION_STEP_DEFAULT (16). |