Class BooleanQueryNode
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.
Inheritance
System.Object
BooleanQueryNode
Assembly: Lucene.Net.QueryParser.dll
Syntax
public class BooleanQueryNode : QueryNode, IQueryNode
Constructors
|
Improve this Doc
View Source
BooleanQueryNode(IList<IQueryNode>)
Declaration
public BooleanQueryNode(IList<IQueryNode> clauses)
Parameters
Type |
Name |
Description |
IList<IQueryNode> |
clauses |
the query nodes to be and'ed
|
Methods
|
Improve this Doc
View Source
CloneTree()
Declaration
public override IQueryNode CloneTree()
Returns
Overrides
|
Improve this Doc
View Source
ToQueryString(IEscapeQuerySyntax)
Declaration
public override string ToQueryString(IEscapeQuerySyntax escapeSyntaxParser)
Parameters
Returns
Type |
Description |
System.String |
|
Overrides
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Overrides
Implements