Class AbstractRangeQueryNode<T>
This class should be extended by nodes intending to represent range queries.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Assembly: Lucene.Net.QueryParser.dll
Syntax
[Serializable]
public class AbstractRangeQueryNode<T> : QueryNode, IAbstractRangeQueryNode, IRangeQueryNode<IFieldableNode>, IRangeQueryNode, IFieldableNode, IQueryNode where T : IFieldableNode
Type Parameters
Name | Description |
---|---|
T | the type of the range query bounds (lower and upper) |
Constructors
Name | Description |
---|---|
AbstractRangeQueryNode() | Constructs an AbstractRangeQueryNode<T>, it should be invoked only by its extenders. |
Properties
Name | Description |
---|---|
Field | Gets or Sets the field associated with this node. |
IsLowerInclusive | Gets whether the lower bound is inclusive or exclusive. |
IsUpperInclusive | Gets whether the upper bound is inclusive or exclusive. |
LowerBound | Gets the lower bound node. |
UpperBound | Gets the upper bound node. |
Methods
Name | Description |
---|---|
SetBounds(T, T, Boolean, Boolean) | Sets the lower and upper bounds. |
ToQueryString(IEscapeQuerySyntax) | |
ToString() |