mirror of https://github.com/apache/lucene.git
modernize javadocs
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1502910 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d1401238c8
commit
1a425dc577
|
@ -26,11 +26,10 @@ import org.apache.lucene.util.Bits;
|
||||||
* Constrains search results to only match those which also match a provided
|
* Constrains search results to only match those which also match a provided
|
||||||
* query.
|
* query.
|
||||||
*
|
*
|
||||||
* <p> This could be used, for example, with a {@link TermRangeQuery} on a suitably
|
* <p> This could be used, for example, with a {@link NumericRangeQuery} on a suitably
|
||||||
* formatted date field to implement date filtering. One could re-use a single
|
* formatted date field to implement date filtering. One could re-use a single
|
||||||
* QueryFilter that matches, e.g., only documents modified within the last
|
* CachingWrapperFilter(QueryWrapperFilter) that matches, e.g., only documents modified
|
||||||
* week. The QueryFilter and TermRangeQuery would only need to be reconstructed
|
* within the last week. This would only need to be reconstructed once per day.
|
||||||
* once per day.
|
|
||||||
*/
|
*/
|
||||||
public class QueryWrapperFilter extends Filter {
|
public class QueryWrapperFilter extends Filter {
|
||||||
private final Query query;
|
private final Query query;
|
||||||
|
|
Loading…
Reference in New Issue