org.apache.lucene.queryParser.core.nodes
Interface QueryNode

All Superinterfaces:
Serializable
All Known Subinterfaces:
FieldableNode
All Known Implementing Classes:
AndQueryNode, AnyQueryNode, BooleanModifierNode, BooleanQueryNode, BoostQueryNode, DeletedQueryNode, FieldQueryNode, FuzzyQueryNode, GroupQueryNode, MatchAllDocsQueryNode, MatchNoDocsQueryNode, ModifierQueryNode, MultiPhraseQueryNode, NoTokenFoundQueryNode, OpaqueQueryNode, OrQueryNode, ParametricQueryNode, ParametricRangeQueryNode, PathQueryNode, PhraseSlopQueryNode, PrefixWildcardQueryNode, ProximityQueryNode, QueryNodeImpl, QuotedFieldQueryNode, RangeQueryNode, SlopQueryNode, StandardBooleanQueryNode, TokenizedPhraseQueryNode, WildcardQueryNode

public interface QueryNode
extends Serializable

A QueryNode is a interface implemented by all nodes on a QueryNode tree.


Method Summary
 void add(List<QueryNode> children)
           
 void add(QueryNode child)
           
 QueryNode cloneTree()
          Recursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() method
 boolean containsTag(CharSequence tagName)
          verify if a node contains a tag
 List<QueryNode> getChildren()
          get Children nodes
 QueryNode getParent()
           
 Object getTag(CharSequence tagName)
           
 Map<CharSequence,Object> getTags()
           
 boolean isLeaf()
          verify if a node is a Leaf node
 void set(List<QueryNode> children)
           
 void setTag(CharSequence tagName, Object value)
          Associate the specified value with the specified tagName.
 CharSequence toQueryString(EscapeQuerySyntax escapeSyntaxParser)
          convert to a query string understood by the query parser
 String toString()
          for printing
 void unsetTag(CharSequence tagName)
          Unset a tag.
 

Method Detail

toQueryString

CharSequence toQueryString(EscapeQuerySyntax escapeSyntaxParser)
convert to a query string understood by the query parser


toString

String toString()
for printing

Overrides:
toString in class Object

getChildren

List<QueryNode> getChildren()
get Children nodes


isLeaf

boolean isLeaf()
verify if a node is a Leaf node


containsTag

boolean containsTag(CharSequence tagName)
verify if a node contains a tag


getTag

Object getTag(CharSequence tagName)
Parameters:
tagName -
Returns:
of stored on under that tag name

getParent

QueryNode getParent()

cloneTree

QueryNode cloneTree()
                    throws CloneNotSupportedException
Recursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() method

Returns:
the cloned tree
Throws:
CloneNotSupportedException

add

void add(QueryNode child)

add

void add(List<QueryNode> children)

set

void set(List<QueryNode> children)

setTag

void setTag(CharSequence tagName,
            Object value)
Associate the specified value with the specified tagName. If the tagName already exists, the old value is replaced. The tagName and value cannot be null. tagName will be converted to lowercase.

Parameters:
tagName -
value -

unsetTag

void unsetTag(CharSequence tagName)
Unset a tag. tagName will be converted to lowercase.

Parameters:
tagName -

getTags

Map<CharSequence,Object> getTags()


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