Uses of Class
org.apache.lucene.search.NumericRangeQuery
Packages that use NumericRangeQuery
-
Uses of NumericRangeQuery in org.apache.lucene.search
Methods in org.apache.lucene.search that return NumericRangeQueryModifier and TypeMethodDescriptionstatic NumericRangeQuery<Double>
NumericRangeQuery.newDoubleRange
(String field, int precisionStep, Double min, Double max, boolean minInclusive, boolean maxInclusive) Factory that creates aNumericRangeQuery
, that queries adouble
range using the givenprecisionStep
.static NumericRangeQuery<Double>
NumericRangeQuery.newDoubleRange
(String field, Double min, Double max, boolean minInclusive, boolean maxInclusive) Factory that creates aNumericRangeQuery
, that queries adouble
range using the defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).static NumericRangeQuery<Float>
NumericRangeQuery.newFloatRange
(String field, int precisionStep, Float min, Float max, boolean minInclusive, boolean maxInclusive) static NumericRangeQuery<Float>
NumericRangeQuery.newFloatRange
(String field, Float min, Float max, boolean minInclusive, boolean maxInclusive) Factory that creates aNumericRangeQuery
, that queries afloat
range using the defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).static NumericRangeQuery<Integer>
NumericRangeQuery.newIntRange
(String field, int precisionStep, Integer min, Integer max, boolean minInclusive, boolean maxInclusive) static NumericRangeQuery<Integer>
NumericRangeQuery.newIntRange
(String field, Integer min, Integer max, boolean minInclusive, boolean maxInclusive) Factory that creates aNumericRangeQuery
, that queries aint
range using the defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).static NumericRangeQuery<Long>
NumericRangeQuery.newLongRange
(String field, int precisionStep, Long min, Long max, boolean minInclusive, boolean maxInclusive) static NumericRangeQuery<Long>
NumericRangeQuery.newLongRange
(String field, Long min, Long max, boolean minInclusive, boolean maxInclusive) Factory that creates aNumericRangeQuery
, that queries along
range using the defaultprecisionStep
NumericUtils.PRECISION_STEP_DEFAULT
(4).