Lines Matching refs:Query

11 public class Query {  class
15 protected Query(long cPtr, boolean cMemoryOwn) { in Query() method in Query
20 protected static long getCPtr(Query obj) { in getCPtr()
50 public final static Query MatchAll = new Query("");
51 public final static Query MatchNothing = new Query();
53 protected static long[] cArrayUnwrap(Query[] arrayWrapper) { in cArrayUnwrap()
56 cArray[i] = Query.getCPtr(arrayWrapper[i]); in cArrayUnwrap()
60 public Query() { in Query() method in Query
64 public Query(String term, long wqf, long pos) { in Query() method in Query
68 public Query(String term, long wqf) { in Query() method in Query
72 public Query(String term) { in Query() method in Query
76 public Query(PostingSource source) { in Query() method in Query
80 public Query(double factor, Query subquery) { in Query() method in Query
81 this(XapianJNI.new_Query__SWIG_5(factor, Query.getCPtr(subquery), subquery), true); in Query()
84 public Query(Query.op op_, Query subquery, double factor) { in Query() method in Query
85 …this(XapianJNI.new_Query__SWIG_6(op_.swigValue(), Query.getCPtr(subquery), subquery, factor), true… in Query()
88 public Query(Query.op op_, Query a, Query b) { in Query() method in Query
89 …this(XapianJNI.new_Query__SWIG_7(op_.swigValue(), Query.getCPtr(a), a, Query.getCPtr(b), b), true); in Query()
92 public Query(Query.op op_, String a, String b) { in Query() method in Query
96 public Query(Query.op op_, int slot, byte[] range_limit) { in Query() method in Query
100 public Query(Query.op op_, int slot, byte[] range_lower, byte[] range_upper) { in Query() method in Query
104 public Query(Query.op op_, String pattern, long max_expansion, int max_type, Query.op combiner) { in Query() method in Query
108 public Query(Query.op op_, String pattern, long max_expansion, int max_type) { in Query() method in Query
112 public Query(Query.op op_, String pattern, long max_expansion) { in Query() method in Query
116 public Query(Query.op op_, String pattern) { in Query() method in Query
120 public Query(Query.op op_, Query[] qbegin, long parameter) { in Query() method in Query
121 … this(XapianJNI.new_Query__SWIG_17(op_.swigValue(), Query.cArrayUnwrap(qbegin), parameter), true); in Query()
124 public Query(Query.op op_, Query[] qbegin) { in Query() method in Query
125 this(XapianJNI.new_Query__SWIG_18(op_.swigValue(), Query.cArrayUnwrap(qbegin)), true); in Query()
128 public Query(Query.op op_, String[] qbegin, long parameter) { in Query() method in Query
132 public Query(Query.op op_, String[] qbegin) { in Query() method in Query
164 public static Query unserialise(byte[] serialised, Registry reg) { in unserialise()
165 …return new Query(XapianJNI.Query_unserialise__SWIG_0(serialised, Registry.getCPtr(reg), reg), true… in unserialise()
168 public static Query unserialise(byte[] serialised) { in unserialise()
169 return new Query(XapianJNI.Query_unserialise__SWIG_1(serialised), true); in unserialise()
172 public Query.op getType() { in getType()
173 return Query.op.swigToEnum(XapianJNI.Query_getType(swigCPtr, this)); in getType()
180 public Query getSubquery(long n) { in getSubquery()
181 return new Query(XapianJNI.Query_getSubquery(swigCPtr, this, n), true); in getSubquery()
188 public Query(Query.op op_) { in Query() method in Query
193 public final static Query.op OP_AND = new Query.op("OP_AND", XapianJNI.Query_OP_AND_get());
194 public final static Query.op OP_OR = new Query.op("OP_OR", XapianJNI.Query_OP_OR_get());
195 …public final static Query.op OP_AND_NOT = new Query.op("OP_AND_NOT", XapianJNI.Query_OP_AND_NOT_ge…
196 public final static Query.op OP_XOR = new Query.op("OP_XOR", XapianJNI.Query_OP_XOR_get());
197 …public final static Query.op OP_AND_MAYBE = new Query.op("OP_AND_MAYBE", XapianJNI.Query_OP_AND_MA…
198 …public final static Query.op OP_FILTER = new Query.op("OP_FILTER", XapianJNI.Query_OP_FILTER_get()…
199 public final static Query.op OP_NEAR = new Query.op("OP_NEAR", XapianJNI.Query_OP_NEAR_get());
200 …public final static Query.op OP_PHRASE = new Query.op("OP_PHRASE", XapianJNI.Query_OP_PHRASE_get()…
201 …public final static Query.op OP_VALUE_RANGE = new Query.op("OP_VALUE_RANGE", XapianJNI.Query_OP_VA…
202 …public final static Query.op OP_SCALE_WEIGHT = new Query.op("OP_SCALE_WEIGHT", XapianJNI.Query_OP_…
203 …public final static Query.op OP_ELITE_SET = new Query.op("OP_ELITE_SET", XapianJNI.Query_OP_ELITE_…
204 …public final static Query.op OP_VALUE_GE = new Query.op("OP_VALUE_GE", XapianJNI.Query_OP_VALUE_GE…
205 …public final static Query.op OP_VALUE_LE = new Query.op("OP_VALUE_LE", XapianJNI.Query_OP_VALUE_LE…
206 …public final static Query.op OP_SYNONYM = new Query.op("OP_SYNONYM", XapianJNI.Query_OP_SYNONYM_ge…
207 public final static Query.op OP_MAX = new Query.op("OP_MAX", XapianJNI.Query_OP_MAX_get());
208 …public final static Query.op OP_WILDCARD = new Query.op("OP_WILDCARD", XapianJNI.Query_OP_WILDCARD…
209 …public final static Query.op OP_INVALID = new Query.op("OP_INVALID", XapianJNI.Query_OP_INVALID_ge…