Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class QuotedFieldQueryNode

    A QuotedFieldQueryNode represents phrase query. Example: "life is great"

    Inheritance
    object
    QueryNode
    FieldQueryNode
    QuotedFieldQueryNode
    Implements
    IFieldValuePairQueryNode<string>
    IFieldableNode
    IValueQueryNode<string>
    IQueryNode
    ITextableQueryNode
    Inherited Members
    FieldQueryNode.m_field
    FieldQueryNode.m_text
    FieldQueryNode.m_begin
    FieldQueryNode.m_end
    FieldQueryNode.m_positionIncrement
    FieldQueryNode.GetTermEscaped(IEscapeQuerySyntax)
    FieldQueryNode.GetTermEscapeQuoted(IEscapeQuerySyntax)
    FieldQueryNode.GetTextAsString()
    FieldQueryNode.GetFieldAsString()
    FieldQueryNode.Begin
    FieldQueryNode.End
    FieldQueryNode.Field
    FieldQueryNode.PositionIncrement
    FieldQueryNode.Text
    FieldQueryNode.Value
    QueryNode.PLAINTEXT_FIELD_NAME
    QueryNode.Allocate()
    QueryNode.Add(IQueryNode)
    QueryNode.Add(IList<IQueryNode>)
    QueryNode.IsLeaf
    QueryNode.Set(IList<IQueryNode>)
    QueryNode.Clone()
    QueryNode.GetChildren()
    QueryNode.SetTag(string, object)
    QueryNode.UnsetTag(string)
    QueryNode.ContainsTag(string)
    QueryNode.GetTag(string)
    QueryNode.TryGetTag(string, out object)
    QueryNode.Parent
    QueryNode.IsRoot
    QueryNode.m_toQueryStringIgnoreFields
    QueryNode.IsDefaultField(string)
    QueryNode.TagMap
    QueryNode.RemoveChildren(IQueryNode)
    QueryNode.RemoveFromParent()
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Lucene.Net.QueryParsers.Flexible.Core.Nodes
    Assembly: Lucene.Net.QueryParser.dll
    Syntax
    public class QuotedFieldQueryNode : FieldQueryNode, IFieldValuePairQueryNode<string>, IFieldableNode, IValueQueryNode<string>, IQueryNode, ITextableQueryNode

    Constructors

    QuotedFieldQueryNode(string, ICharSequence, int, int)

    A QuotedFieldQueryNode represents phrase query. Example: "life is great"

    Declaration
    public QuotedFieldQueryNode(string field, ICharSequence text, int begin, int end)
    Parameters
    Type Name Description
    string field

    field name

    ICharSequence text

    value

    int begin

    position in the query string

    int end

    position in the query string

    QuotedFieldQueryNode(string, string, int, int)

    A QuotedFieldQueryNode represents phrase query. Example: "life is great"

    Declaration
    public QuotedFieldQueryNode(string field, string text, int begin, int end)
    Parameters
    Type Name Description
    string field

    field name

    string text

    value

    int begin

    position in the query string

    int end

    position in the query string

    QuotedFieldQueryNode(string, StringBuilder, int, int)

    A QuotedFieldQueryNode represents phrase query. Example: "life is great"

    Declaration
    public QuotedFieldQueryNode(string field, StringBuilder text, int begin, int end)
    Parameters
    Type Name Description
    string field

    field name

    StringBuilder text

    value

    int begin

    position in the query string

    int end

    position in the query string

    Methods

    CloneTree()

    Recursive clone the IQueryNode tree. The tags are not copied to the new tree when you call the CloneTree() method.

    Declaration
    public override IQueryNode CloneTree()
    Returns
    Type Description
    IQueryNode

    the cloned tree

    Overrides
    FieldQueryNode.CloneTree()

    ToQueryString(IEscapeQuerySyntax)

    convert to a query string understood by the query parser

    Declaration
    public override string ToQueryString(IEscapeQuerySyntax escaper)
    Parameters
    Type Name Description
    IEscapeQuerySyntax escaper
    Returns
    Type Description
    string
    Overrides
    FieldQueryNode.ToQueryString(IEscapeQuerySyntax)

    ToString()

    Every implementation of this class should return pseudo xml like this:

    For FieldQueryNode: <field start='1' end='2' field='subject' text='foo'/>

    Declaration
    public override string ToString()
    Returns
    Type Description
    string
    Overrides
    FieldQueryNode.ToString()
    See Also
    ToString()

    Implements

    IFieldValuePairQueryNode<T>
    IFieldableNode
    IValueQueryNode<T>
    IQueryNode
    ITextableQueryNode
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.