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<java.lang.Double> 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<java.lang.Double> 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<java.lang.Float> 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<java.lang.Float> 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<java.lang.Integer> 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<java.lang.Integer> 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<java.lang.Long> 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<java.lang.Long> 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).
 



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