Package | Description |
---|---|
org.sindice.siren.qparser.keyword.builders |
Create a
Query object
from the processed QueryNode tree
using a bottom-up approach. |
org.sindice.siren.search.node |
Programmatic API to search node-based inverted indexes.
|
Modifier and Type | Method and Description |
---|---|
NodeNumericRangeQuery<? extends Number> |
NodeNumericRangeQueryNodeBuilder.build(org.apache.lucene.queryparser.flexible.core.nodes.QueryNode queryNode) |
Modifier and Type | Method and Description |
---|---|
static NodeNumericRangeQuery<Double> |
NodeNumericRangeQuery.newDoubleRange(String field,
Double min,
Double max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a double
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
static NodeNumericRangeQuery<Double> |
NodeNumericRangeQuery.newDoubleRange(String field,
int precisionStep,
Double min,
Double max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a double
range using the given precisionStep . |
static NodeNumericRangeQuery<Float> |
NodeNumericRangeQuery.newFloatRange(String field,
Float min,
Float max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a float
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
static NodeNumericRangeQuery<Float> |
NodeNumericRangeQuery.newFloatRange(String field,
int precisionStep,
Float min,
Float max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a float
range using the given precisionStep . |
static NodeNumericRangeQuery<Integer> |
NodeNumericRangeQuery.newIntRange(String field,
Integer min,
Integer max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a int
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
static NodeNumericRangeQuery<Integer> |
NodeNumericRangeQuery.newIntRange(String field,
int precisionStep,
Integer min,
Integer max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a int
range using the given precisionStep . |
static NodeNumericRangeQuery<Long> |
NodeNumericRangeQuery.newLongRange(String field,
int precisionStep,
Long min,
Long max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a long
range using the given precisionStep . |
static NodeNumericRangeQuery<Long> |
NodeNumericRangeQuery.newLongRange(String field,
Long min,
Long max,
boolean minInclusive,
boolean maxInclusive)
Factory that creates a
SirenNumericRangeQuery , that queries a long
range using the default precisionStep NumericUtils.PRECISION_STEP_DEFAULT (4). |
Copyright © 2014. All rights reserved.