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 voidStandardQueryParser. 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_CONFIGKey used to set a field to itsNumericConfig.static ConfigurationKey<Map<String,NumericConfig>>StandardQueryConfigHandler.ConfigurationKeys. NUMERIC_CONFIG_MAPKey used to set theNumericConfiginFieldConfigfor 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 NumericConfigNumericRangeQueryNode. numericConfigMethods in org.apache.lucene.queryParser.standard.nodes that return NumericConfig Modifier and Type Method Description NumericConfigNumericRangeQueryNode. getNumericConfig()Returns theNumericConfigassociated with the lower and upper bounds.Methods in org.apache.lucene.queryParser.standard.nodes with parameters of type NumericConfig Modifier and Type Method Description voidNumericRangeQueryNode. setBounds(NumericQueryNode lower, NumericQueryNode upper, boolean lowerInclusive, boolean upperInclusive, NumericConfig numericConfig)Sets the upper and lower bounds of this range query node and theNumericConfigassociated 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 aNumericRangeQueryNodeobject using the givenNumericQueryNodeas its bounds andNumericConfig.
-