Uses of Class
org.apache.lucene.queryParser.standard.config.NumericConfig

Packages that use NumericConfig
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 
 

Uses of NumericConfig in org.apache.lucene.queryParser.standard
 

Methods in org.apache.lucene.queryParser.standard that return types with arguments of type NumericConfig
 Map<String,NumericConfig> StandardQueryParser.getNumericConfigMap()
           
 

Method parameters in org.apache.lucene.queryParser.standard with type arguments of type NumericConfig
 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
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.
 

Uses of NumericConfig in org.apache.lucene.queryParser.standard.nodes
 

Fields in org.apache.lucene.queryParser.standard.nodes declared as NumericConfig
 NumericConfig NumericRangeQueryNode.numericConfig
           
 

Methods in org.apache.lucene.queryParser.standard.nodes that return NumericConfig
 NumericConfig NumericRangeQueryNode.getNumericConfig()
          Returns the NumericConfig associated with the lower and upper bounds.
 

Methods in org.apache.lucene.queryParser.standard.nodes with parameters of type NumericConfig
 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.
 

Constructors in org.apache.lucene.queryParser.standard.nodes with parameters of type NumericConfig
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-2011 Apache Software Foundation. All Rights Reserved.