Uses of Class
org.apache.lucene.search.NumericRangeQuery

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<Double> NumericRangeQuery.newDoubleRange(String field, Double min, 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<Double> NumericRangeQuery.newDoubleRange(String field, int precisionStep, Double min, Double max, boolean minInclusive, boolean maxInclusive)
          Factory that creates a NumericRangeQuery, that queries a double range using the given precisionStep.
static NumericRangeQuery<Float> NumericRangeQuery.newFloatRange(String field, Float min, 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<Float> NumericRangeQuery.newFloatRange(String field, int precisionStep, Float min, Float max, boolean minInclusive, boolean maxInclusive)
          Factory that creates a NumericRangeQuery, that queries a float range using the given precisionStep.
static NumericRangeQuery<Integer> NumericRangeQuery.newIntRange(String field, Integer min, 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<Integer> NumericRangeQuery.newIntRange(String field, int precisionStep, Integer min, Integer max, boolean minInclusive, boolean maxInclusive)
          Factory that creates a NumericRangeQuery, that queries a int range using the given precisionStep.
static NumericRangeQuery<Long> NumericRangeQuery.newLongRange(String field, int precisionStep, Long min, Long max, boolean minInclusive, boolean maxInclusive)
          Factory that creates a NumericRangeQuery, that queries a long range using the given precisionStep.
static NumericRangeQuery<Long> NumericRangeQuery.newLongRange(String field, Long min, 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).
 



Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.