Class ComposedQuery
Base class for composite queries (such as AND/OR/NOT)
Inheritance
System.Object
ComposedQuery
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Assembly: Lucene.Net.QueryParser.dll
Syntax
public abstract class ComposedQuery : SrndQuery
Constructors
|
Improve this Doc
View Source
ComposedQuery(IList<SrndQuery>, Boolean, String)
Declaration
protected ComposedQuery(IList<SrndQuery> qs, bool operatorInfix, string opName)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IList<SrndQuery> |
qs |
|
System.Boolean |
operatorInfix |
|
System.String |
opName |
|
Fields
|
Improve this Doc
View Source
m_opName
Declaration
protected string m_opName
Field Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
m_queries
Declaration
protected IList<SrndQuery> m_queries
Field Value
Type |
Description |
System.Collections.Generic.IList<SrndQuery> |
|
Properties
|
Improve this Doc
View Source
BracketClose
Declaration
protected virtual string BracketClose { get; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
BracketOpen
Declaration
protected virtual string BracketOpen { get; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
IsFieldsSubQueryAcceptable
Declaration
public override bool IsFieldsSubQueryAcceptable { get; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
|
Improve this Doc
View Source
IsOperatorInfix
Declaration
public virtual bool IsOperatorInfix { get; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
NrSubQueries
Declaration
public virtual int NrSubQueries { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
OperatorName
Declaration
public virtual string OperatorName { get; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
PrefixSeparator
Declaration
protected virtual string PrefixSeparator { get; }
Property Value
Type |
Description |
System.String |
|
Methods
|
Improve this Doc
View Source
GetSubQueriesEnumerator()
Declaration
public virtual IEnumerator<SrndQuery> GetSubQueriesEnumerator()
Returns
Type |
Description |
System.Collections.Generic.IEnumerator<SrndQuery> |
|
|
Improve this Doc
View Source
GetSubQuery(Int32)
Declaration
public virtual SrndQuery GetSubQuery(int qn)
Parameters
Type |
Name |
Description |
System.Int32 |
qn |
|
Returns
|
Improve this Doc
View Source
InfixToString(StringBuilder)
Declaration
protected virtual void InfixToString(StringBuilder r)
Parameters
Type |
Name |
Description |
System.Text.StringBuilder |
r |
|
|
Improve this Doc
View Source
MakeLuceneSubQueriesField(String, BasicQueryFactory)
Declaration
public virtual IList<Query> MakeLuceneSubQueriesField(string fn, BasicQueryFactory qf)
Parameters
Returns
Type |
Description |
System.Collections.Generic.IList<Lucene.Net.Search.Query> |
|
|
Improve this Doc
View Source
PrefixToString(StringBuilder)
Declaration
protected virtual void PrefixToString(StringBuilder r)
Parameters
Type |
Name |
Description |
System.Text.StringBuilder |
r |
|
|
Improve this Doc
View Source
Recompose(IList<SrndQuery>)
Declaration
protected virtual void Recompose(IList<SrndQuery> queries)
Parameters
Type |
Name |
Description |
System.Collections.Generic.IList<SrndQuery> |
queries |
|
|
Improve this Doc
View Source
ToString()
Declaration
public override string ToString()
Returns
Type |
Description |
System.String |
|
Overrides