Uses of Class
org.apache.lucene.queryParser.standard.config.NumericConfig
-
Packages that use NumericConfig Package Description org.apache.lucene.queryParser.standard Contains the implementation of the Lucene query parser using the flexible query parser frameworksorg.apache.lucene.queryParser.standard.config Standard Lucene Query Configurationorg.apache.lucene.queryParser.standard.nodes Standard Lucene Query Nodes -
-
Uses of NumericConfig in org.apache.lucene.queryParser.standard
Methods in org.apache.lucene.queryParser.standard that return types with arguments of type NumericConfig Modifier and Type Method Description Map<String,NumericConfig>
StandardQueryParser. getNumericConfigMap()
Method parameters in org.apache.lucene.queryParser.standard with type arguments of type NumericConfig Modifier and Type Method Description void
StandardQueryParser. setNumericConfigMap(Map<String,NumericConfig> numericConfigMap)
-
Uses of NumericConfig in org.apache.lucene.queryParser.standard.config
Fields in org.apache.lucene.queryParser.standard.config with type parameters of type NumericConfig Modifier and Type Field Description static ConfigurationKey<NumericConfig>
StandardQueryConfigHandler.ConfigurationKeys. NUMERIC_CONFIG
Key used to set a field to itsNumericConfig
.static ConfigurationKey<Map<String,NumericConfig>>
StandardQueryConfigHandler.ConfigurationKeys. NUMERIC_CONFIG_MAP
Key used to set theNumericConfig
inFieldConfig
for numeric fields. -
Uses of NumericConfig in org.apache.lucene.queryParser.standard.nodes
Fields in org.apache.lucene.queryParser.standard.nodes declared as NumericConfig Modifier and Type Field Description NumericConfig
NumericRangeQueryNode. numericConfig
Methods in org.apache.lucene.queryParser.standard.nodes that return NumericConfig Modifier and Type Method Description NumericConfig
NumericRangeQueryNode. getNumericConfig()
Returns theNumericConfig
associated with the lower and upper bounds.Methods in org.apache.lucene.queryParser.standard.nodes with parameters of type NumericConfig 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 theNumericConfig
associated with these bounds.Constructors in org.apache.lucene.queryParser.standard.nodes with parameters of type NumericConfig Constructor Description NumericRangeQueryNode(NumericQueryNode lower, NumericQueryNode upper, boolean lowerInclusive, boolean upperInclusive, NumericConfig numericConfig)
Constructs aNumericRangeQueryNode
object using the givenNumericQueryNode
as its bounds andNumericConfig
.
-