org.apache.lucene.queryParser.core.nodes
Class OrQueryNode
java.lang.Object
org.apache.lucene.queryParser.core.nodes.QueryNodeImpl
org.apache.lucene.queryParser.core.nodes.BooleanQueryNode
org.apache.lucene.queryParser.core.nodes.OrQueryNode
- All Implemented Interfaces:
- Serializable, Cloneable, QueryNode
public class OrQueryNode
- extends BooleanQueryNode
A OrQueryNode
represents an OR boolean operation performed on a list
of nodes.
- See Also:
- Serialized Form
Methods inherited from class org.apache.lucene.queryParser.core.nodes.QueryNodeImpl |
add, add, allocate, clone, containsTag, containsTag, getChildren, getParent, getTag, getTag, getTagMap, getTags, isDefaultField, isLeaf, isRoot, set, setLeaf, setTag, setTag, unsetTag, unsetTag |
OrQueryNode
public OrQueryNode(List<QueryNode> clauses)
- Parameters:
clauses
- - the query nodes to be or'ed
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 BooleanQueryNode
- See Also:
QueryNode.toString()
toQueryString
public CharSequence toQueryString(EscapeQuerySyntax escapeSyntaxParser)
- Description copied from interface:
QueryNode
- convert to a query string understood by the query parser
- Specified by:
toQueryString
in interface QueryNode
- Overrides:
toQueryString
in class BooleanQueryNode