Uses of Class
org.apache.lucene.queryParser.core.nodes.FieldQueryNode

Packages that use FieldQueryNode
org.apache.lucene.queryParser.core.nodes Contains query nodes that are commonly used by query parser implementations 
org.apache.lucene.queryParser.standard.nodes Standard Lucene Query Nodes 
 

Uses of FieldQueryNode in org.apache.lucene.queryParser.core.nodes
 

Subclasses of FieldQueryNode in org.apache.lucene.queryParser.core.nodes
 class FuzzyQueryNode
          A FuzzyQueryNode represents a element that contains field/text/similarity tuple
 class ParametricQueryNode
          Deprecated. this class will be removed in future. FieldQueryNode should be used instead.
 class QuotedFieldQueryNode
          A QuotedFieldQueryNode represents phrase query.
 

Methods in org.apache.lucene.queryParser.core.nodes that return FieldQueryNode
 FieldQueryNode FieldQueryNode.cloneTree()
           
 

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

Subclasses of FieldQueryNode in org.apache.lucene.queryParser.standard.nodes
 class PrefixWildcardQueryNode
          A PrefixWildcardQueryNode represents wildcardquery that matches abc* or *.
 class WildcardQueryNode
          A WildcardQueryNode represents wildcard query This does not apply to phrases.
 

Methods in org.apache.lucene.queryParser.standard.nodes with parameters of type FieldQueryNode
 void RangeQueryNode.setBounds(FieldQueryNode lower, FieldQueryNode upper, boolean lowerInclusive, boolean upperInclusive)
          Deprecated. Sets lower and upper bounds.
 

Constructors in org.apache.lucene.queryParser.standard.nodes with parameters of type FieldQueryNode
PrefixWildcardQueryNode(FieldQueryNode fqn)
           
TermRangeQueryNode(FieldQueryNode lower, FieldQueryNode upper, boolean lowerInclusive, boolean upperInclusive)
          Constructs a TermRangeQueryNode object using the given FieldQueryNode as its bounds.
WildcardQueryNode(FieldQueryNode fqn)
           
 



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