| Package | Description |
|---|---|
| org.apache.lucene.queryParser.standard |
Contains the implementation of the Lucene query parser using the flexible query parser frameworks
|
| org.apache.lucene.queryParser.standard.config |
Standard Lucene Query Configuration
|
| org.apache.lucene.queryParser.standard.nodes |
Standard Lucene Query Nodes
|
| Modifier and Type | Method | Description |
|---|---|---|
Map<String,NumericConfig> |
StandardQueryParser.getNumericConfigMap() |
| Modifier and Type | Method | Description |
|---|---|---|
void |
StandardQueryParser.setNumericConfigMap(Map<String,NumericConfig> numericConfigMap) |
| Modifier and Type | Field | Description |
|---|---|---|
static ConfigurationKey<NumericConfig> |
StandardQueryConfigHandler.ConfigurationKeys.NUMERIC_CONFIG |
Key used to set a field to its
NumericConfig. |
static ConfigurationKey<Map<String,NumericConfig>> |
StandardQueryConfigHandler.ConfigurationKeys.NUMERIC_CONFIG_MAP |
Key used to set the
NumericConfig in FieldConfig for
numeric fields. |
| Modifier and Type | Field | Description |
|---|---|---|
NumericConfig |
NumericRangeQueryNode.numericConfig |
| Modifier and Type | Method | Description |
|---|---|---|
NumericConfig |
NumericRangeQueryNode.getNumericConfig() |
Returns the
NumericConfig associated with the lower and upper bounds. |
| Modifier and Type | Method | Description |
|---|---|---|
void |
NumericRangeQueryNode.setBounds(NumericQueryNode lower,
NumericQueryNode upper,
boolean lowerInclusive,
boolean upperInclusive,
NumericConfig numericConfig) |
Sets the upper and lower bounds of this range query node and the
NumericConfig associated with these bounds. |
| Constructor | Description |
|---|---|
NumericRangeQueryNode(NumericQueryNode lower,
NumericQueryNode upper,
boolean lowerInclusive,
boolean upperInclusive,
NumericConfig numericConfig) |
Constructs a
NumericRangeQueryNode object using the given
NumericQueryNode as its bounds and NumericConfig. |
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.