Class PathQueryNode
A Path
Example how the text parser creates these objects:
IList<PathQueryNode.QueryText> values = new List<PathQueryNode.QueryText>();
values.Add(new PathQueryNode.QueryText("company", 1, 7));
values.Add(new PathQueryNode.QueryText("USA", 9, 12));
values.Add(new PathQueryNode.QueryText("California", 14, 23));
QueryNode q = new PathQueryNode(values);
Implements
Inherited Members
Namespace: Lucene.Net.QueryParsers.Flexible.Core.Nodes
Assembly: Lucene.Net.QueryParser.dll
Syntax
public class PathQueryNode : QueryNode, IQueryNode
Constructors
| Improve this Doc View SourcePathQueryNode(IList<PathQueryNode.QueryText>)
Declaration
public PathQueryNode(IList<PathQueryNode.QueryText> pathElements)
Parameters
Type | Name | Description |
---|---|---|
IList<Path |
pathElements | List of QueryText objects |
Properties
| Improve this Doc View SourcePathElements
Gets or Sets the a List with all QueryText elements
Declaration
public virtual IList<PathQueryNode.QueryText> PathElements { get; set; }
Property Value
Type | Description |
---|---|
IList<Path |
QueryText List size |
Methods
| Improve this Doc View SourceCloneTree()
Declaration
public override IQueryNode CloneTree()
Returns
Type | Description |
---|---|
IQuery |
Overrides
| Improve this Doc View SourceGetFirstPathElement()
Returns the
Declaration
public virtual string GetFirstPathElement()
Returns
Type | Description |
---|---|
System. |
The |
GetPathElement(Int32)
Returns the a specific QueryText element
Declaration
public virtual PathQueryNode.QueryText GetPathElement(int index)
Parameters
Type | Name | Description |
---|---|---|
System. |
index |
Returns
Type | Description |
---|---|
Path |
QueryText List size |
GetPathElements(Int32)
Returns a List QueryText element from position startIndex
Declaration
public virtual IList<PathQueryNode.QueryText> GetPathElements(int startIndex)
Parameters
Type | Name | Description |
---|---|---|
System. |
startIndex |
Returns
Type | Description |
---|---|
IList<Path |
a List QueryText element from position |
ToQueryString(IEscapeQuerySyntax)
Declaration
public override string ToQueryString(IEscapeQuerySyntax escaper)
Parameters
Type | Name | Description |
---|---|---|
IEscape |
escaper |
Returns
Type | Description |
---|---|
System. |
Overrides
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |