Class GroupQueryNode
A GroupQueryNode represents a location where the original user typed
real parenthesis on the query string. This class is useful for queries like:
a) a AND b OR c b) ( a AND b) OR c
Parenthesis might be used to define the boolean operation precedence.
Inheritance
System.Object
GroupQueryNode
Assembly: Lucene.Net.QueryParser.dll
Syntax
public class GroupQueryNode : QueryNode, IQueryNode
Constructors
|
Improve this Doc
View Source
GroupQueryNode(IQueryNode)
This IQueryNode is used to identify parenthesis on the original query string
Declaration
public GroupQueryNode(IQueryNode query)
Parameters
Methods
|
Improve this Doc
View Source
CloneTree()
Declaration
public override IQueryNode CloneTree()
Returns
Overrides
|
Improve this Doc
View Source
GetChild()
Declaration
public virtual IQueryNode GetChild()
Returns
|
Improve this Doc
View Source
SetChild(IQueryNode)
Declaration
public virtual void SetChild(IQueryNode child)
Parameters
|
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