|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.terrier.querying.parser.Query org.terrier.querying.parser.MultiTermQuery
public class MultiTermQuery
Represents a query consisting of more than one terms or other sub-queries, qualified with field, requirement or phrase operators.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.terrier.querying.parser.Query |
---|
Query.ForEachQueryNode |
Field Summary | |
---|---|
protected java.lang.String |
prefix
|
protected java.lang.String |
suffix
|
protected java.util.ArrayList<Query> |
v
A list for holding the sub-queries. |
Fields inherited from class org.terrier.querying.parser.Query |
---|
child, tmpSTQ |
Constructor Summary | |
---|---|
MultiTermQuery()
A default constructor. |
Method Summary | |
---|---|
void |
add(Query query)
Adds a subquery to this query. |
void |
add(java.lang.String term)
Adds a single query term to the query. |
void |
apply(Query.ForEachQueryNode processor)
Apply the specified processor to this node. |
boolean |
applyTermPipeline(TermPipelineAccessor tpa)
Applies the given term pipeline to the query terms and sub-queries that construct this query. |
java.lang.Object |
clone()
Deep copy this Query object |
int |
getNumberOfTerms()
Returns the number of terms, or subqueries. |
protected void |
getTerms(java.util.List<Query> alist)
Adds all the subqueries and single-term queries to a given array list. |
void |
getTermsOf(java.lang.Class<? extends Query> c,
java.util.List<Query> alist,
boolean req)
Returns all the query terms, in subqueries that are instances of a given class |
void |
obtainAllOf(java.lang.Class<? extends Query> c,
java.util.List<Query> a)
Returns all the queries of the specified class |
boolean |
obtainControls(java.util.Set<java.lang.String> allowed,
java.util.Map<java.lang.String,java.lang.String> controls)
Checks all child objects to see if they are FieldQuery objects, they are each called to see if the are controls. |
void |
obtainQueryTerms(MatchingQueryTerms terms)
Prepares the query for matching by transforming the query objects to a set of query terms. |
void |
obtainQueryTerms(MatchingQueryTerms terms,
boolean required)
Prepares the query for matching by transforming the query objects to a set of query terms. |
java.lang.String |
parseTree()
Returns the parse tree for the query as a string |
void |
replace(Query childNode,
Query replacement)
Replace query node |
java.lang.String |
toString()
Returns a string representation of the query. |
Methods inherited from class org.terrier.querying.parser.Query |
---|
setChild |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected java.lang.String prefix
protected java.lang.String suffix
protected java.util.ArrayList<Query> v
Constructor Detail |
---|
public MultiTermQuery()
Method Detail |
---|
public int getNumberOfTerms()
public java.lang.Object clone()
clone
in class Query
public void add(java.lang.String term)
term
- String the query term.public void add(Query query)
query
- Query a subquery.public java.lang.String toString()
toString
in class Query
public boolean applyTermPipeline(TermPipelineAccessor tpa)
applyTermPipeline
in class Query
tpa
- TermPipelineAccessor the object that gives access
to a term pipeline.
public void obtainQueryTerms(MatchingQueryTerms terms)
obtainQueryTerms
in class Query
terms
- MatchingQueryTerms the object which holds the
query terms and their modifiers.public void obtainQueryTerms(MatchingQueryTerms terms, boolean required)
obtainQueryTerms
in class Query
terms
- MatchingQueryTerms the object which holds the
query terms and their modifiers.required
- boolean indicates whether the field query
is required or not.protected void getTerms(java.util.List<Query> alist)
getTerms
in class Query
alist
- ArrayList the array list in which all the
query terms and sub-queries are stored.public boolean obtainControls(java.util.Set<java.lang.String> allowed, java.util.Map<java.lang.String,java.lang.String> controls)
obtainControls
in class Query
allowed
- The HashSet of control names that are allowed to be set.controls
- The Hashtable into which child objects much add
found controls
public void getTermsOf(java.lang.Class<? extends Query> c, java.util.List<Query> alist, boolean req)
getTermsOf
in class Query
c
- Class a class of queries.alist
- ArrayList the list of query terms.req
- boolean indicates whether the subqueries
are required or not.public void replace(Query childNode, Query replacement)
childNode
- replacement
- public void obtainAllOf(java.lang.Class<? extends Query> c, java.util.List<Query> a)
Query
obtainAllOf
in class Query
public void apply(Query.ForEachQueryNode processor)
apply
in class Query
processor
- public java.lang.String parseTree()
Query
parseTree
in class Query
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |