Mercurial Hosting > luan
view src/goodjava/lucene/queryparser/FieldParser.java @ 1742:d778f1f2598a
make server side events proxy work
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Tue, 08 Nov 2022 09:32:46 +0200 |
parents | b04b8fc5f4f4 |
children |
line wrap: on
line source
package goodjava.lucene.queryparser; import org.apache.lucene.search.Query; import org.apache.lucene.search.SortField; import goodjava.parser.ParseException; public interface FieldParser { public Query getQuery(GoodQueryParser qp,String field,String query) throws ParseException; public Query getRangeQuery(GoodQueryParser qp,String field,String minQuery,String maxQuery,boolean includeMin,boolean includeMax) throws ParseException; public SortField getSortField(GoodQueryParser qp,String field,boolean reverse) throws ParseException; }