|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.apache.lucene.search.Query
org.apache.lucene.search.RangeQuery
A Query that matches documents within an exclusive range.
| Constructor Summary | |
RangeQuery(Term lowerTerm,
Term upperTerm,
boolean inclusive)
Constructs a query selecting all terms greater than lowerTerm but less than upperTerm. |
|
| Method Summary | |
Query |
combine(Query[] queries)
Expert: called when re-writing queries under MultiSearcher. |
Query |
rewrite(IndexReader reader)
FIXME: Describe rewrite method here. |
String |
toString(String field)
Prints a user-readable version of this query. |
| Methods inherited from class org.apache.lucene.search.Query |
clone, createWeight, getBoost, mergeBooleanQueries, setBoost, toString, weight |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public RangeQuery(Term lowerTerm,
Term upperTerm,
boolean inclusive)
lowerTerm but less than upperTerm.
There must be at least one term and either term may be null,
in which case there is no bound on that side, but if there are
two terms, both terms must be for the same field.
| Method Detail |
public Query rewrite(IndexReader reader)
throws IOException
rewrite method here.
rewrite in class Queryreader - an IndexReader value
Query value
IOException - if an error occurspublic Query combine(Query[] queries)
QueryOnly implemented by derived queries, with no Query.createWeight(Searcher) implementatation..
combine in class Querypublic String toString(String field)
toString in class Query
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||