org.apache.lucene.queryParser.standard.nodes
Class NumericRangeQueryNode

java.lang.Object
  extended by org.apache.lucene.queryParser.core.nodes.QueryNodeImpl
      extended by org.apache.lucene.queryParser.standard.nodes.AbstractRangeQueryNode<NumericQueryNode>
          extended by org.apache.lucene.queryParser.standard.nodes.NumericRangeQueryNode
All Implemented Interfaces:
Serializable, Cloneable, FieldableNode, QueryNode, RangeQueryNode<FieldValuePairQueryNode<?>>

public class NumericRangeQueryNode
extends AbstractRangeQueryNode<NumericQueryNode>

This query node represents a range query composed by NumericQueryNode bounds, which means the bound values are Numbers.

See Also:
NumericQueryNode, AbstractRangeQueryNode, Serialized Form

Field Summary
 NumericConfig numericConfig
           
 
Fields inherited from class org.apache.lucene.queryParser.core.nodes.QueryNodeImpl
PLAINTEXT_FIELD_NAME, toQueryStringIgnoreFields
 
Constructor Summary
NumericRangeQueryNode(NumericQueryNode lower, NumericQueryNode upper, boolean lowerInclusive, boolean upperInclusive, NumericConfig numericConfig)
          Constructs a NumericRangeQueryNode object using the given NumericQueryNode as its bounds and NumericConfig.
 
Method Summary
 NumericConfig getNumericConfig()
          Returns the NumericConfig associated with the lower and upper bounds.
 void 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.
 String toString()
          Every implementation of this class should return pseudo xml like this: For FieldQueryNode:
 
Methods inherited from class org.apache.lucene.queryParser.standard.nodes.AbstractRangeQueryNode
getField, getLowerBound, getUpperBound, isLowerInclusive, isUpperInclusive, setBounds, setField, toQueryString
 
Methods inherited from class org.apache.lucene.queryParser.core.nodes.QueryNodeImpl
add, add, allocate, clone, cloneTree, containsTag, containsTag, getChildren, getParent, getTag, getTag, getTagMap, getTags, isDefaultField, isLeaf, isRoot, set, setLeaf, setTag, setTag, unsetTag, unsetTag
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.apache.lucene.queryParser.core.nodes.QueryNode
add, add, cloneTree, containsTag, containsTag, getChildren, getParent, getTag, getTag, getTagMap, getTags, isLeaf, set, setTag, setTag, unsetTag, unsetTag
 

Field Detail

numericConfig

public NumericConfig numericConfig
Constructor Detail

NumericRangeQueryNode

public NumericRangeQueryNode(NumericQueryNode lower,
                             NumericQueryNode upper,
                             boolean lowerInclusive,
                             boolean upperInclusive,
                             NumericConfig numericConfig)
                      throws QueryNodeException
Constructs a NumericRangeQueryNode object using the given NumericQueryNode as its bounds and NumericConfig.

Parameters:
lower - the lower bound
upper - the upper bound
lowerInclusive - true if the lower bound is inclusive, otherwise, false
upperInclusive - true if the upper bound is inclusive, otherwise, false
numericConfig - the NumericConfig that represents associated with the upper and lower bounds
Throws:
QueryNodeException
See Also:
setBounds(NumericQueryNode, NumericQueryNode, boolean, boolean, NumericConfig)
Method Detail

setBounds

public void setBounds(NumericQueryNode lower,
                      NumericQueryNode upper,
                      boolean lowerInclusive,
                      boolean upperInclusive,
                      NumericConfig numericConfig)
               throws QueryNodeException
Sets the upper and lower bounds of this range query node and the NumericConfig associated with these bounds.

Parameters:
lower - the lower bound
upper - the upper bound
lowerInclusive - true if the lower bound is inclusive, otherwise, false
upperInclusive - true if the upper bound is inclusive, otherwise, false
numericConfig - the NumericConfig that represents associated with the upper and lower bounds
Throws:
QueryNodeException

getNumericConfig

public NumericConfig getNumericConfig()
Returns the NumericConfig associated with the lower and upper bounds.

Returns:
the NumericConfig associated with the lower and upper bounds

toString

public String toString()
Description copied from class: QueryNodeImpl
Every implementation of this class should return pseudo xml like this: For FieldQueryNode:

Specified by:
toString in interface QueryNode
Overrides:
toString in class QueryNodeImpl
See Also:
QueryNode.toString()


Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.