Class BooleanQueryNode
java.lang.Object
org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
org.apache.lucene.queryparser.flexible.core.nodes.BooleanQueryNode
- Direct Known Subclasses:
AndQueryNode,OrQueryNode,ProximityQueryNode,StandardBooleanQueryNode
A
BooleanQueryNode represents a list of elements which do not have an
explicit boolean operator defined between them. It can be used to express a
boolean query that intends to use the default boolean operator.-
Field Summary
Fields inherited from class org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
PLAINTEXT_FIELD_NAME -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionRecursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() methodtoQueryString(EscapeQuerySyntax escapeSyntaxParser) convert to a query string understood by the query parsertoString()Every implementation of this class should return pseudo xml like this: For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>Methods inherited from class org.apache.lucene.queryparser.flexible.core.nodes.QueryNodeImpl
add, add, clone, containsTag, getChildren, getParent, getTag, getTagMap, isLeaf, removeFromParent, set, setTag, unsetTag
-
Constructor Details
-
BooleanQueryNode
- Parameters:
clauses- - the query nodes to be and'ed
-
-
Method Details
-
toString
Description copied from class:QueryNodeImplEvery implementation of this class should return pseudo xml like this: For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>- Specified by:
toStringin interfaceQueryNode- Overrides:
toStringin classQueryNodeImpl- See Also:
-
toQueryString
Description copied from interface:QueryNodeconvert to a query string understood by the query parser -
cloneTree
Description copied from interface:QueryNodeRecursive clone the QueryNode tree The tags are not copied to the new tree when you call the cloneTree() method- Specified by:
cloneTreein interfaceQueryNode- Overrides:
cloneTreein classQueryNodeImpl- Returns:
- the cloned tree
- Throws:
CloneNotSupportedException
-