Lines Matching refs:Query

11 public class Query {  class
15 public Query(long cPtr, boolean cMemoryOwn) { in Query() method in Query
20 public 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(Query copyme) { in Query() method in Query
61 this(XapianJNI.new_Query__SWIG_0(Query.getCPtr(copyme), copyme), true); in Query()
64 public Query() { in Query() method in Query
68 public Query(String tname_, long wqf_, long pos_) { in Query() method in Query
72 public Query(String tname_, long wqf_) { in Query() method in Query
76 public Query(String tname_) { in Query() method in Query
80 public Query(Query.op op_, Query left, Query right) { in Query() method in Query
81 …this(XapianJNI.new_Query__SWIG_5(op_.swigValue(), Query.getCPtr(left), left, Query.getCPtr(right),… in Query()
84 public Query(Query.op op_, String left, String right) { in Query() method in Query
88 public Query(Query.op op_, Query q, double parameter) { in Query() method in Query
89 this(XapianJNI.new_Query__SWIG_9(op_.swigValue(), Query.getCPtr(q), q, parameter), true); in Query()
92 public Query(Query.op op_, int slot, String begin, String end) { in Query() method in Query
96 public Query(Query.op op_, int slot, String value) { in Query() method in Query
100 public Query(PostingSource external_source) { in Query() method in Query
124 public static Query unserialise(String s) { in unserialise()
125 return new Query(XapianJNI.Query_unserialise__SWIG_0(s), true); in unserialise()
128 public static Query unserialise(String s, Registry registry) { in unserialise()
129 …return new Query(XapianJNI.Query_unserialise__SWIG_1(s, Registry.getCPtr(registry), registry), tru… in unserialise()
136 public Query(Query.op op, String[] subqs, long param) { in Query() method in Query
140 public Query(Query.op op, String[] subqs) { in Query() method in Query
144 public Query(Query.op op, Query[] subqs, long param) { in Query() method in Query
145 this(XapianJNI.new_Query__SWIG_15(op.swigValue(), Query.cArrayUnwrap(subqs), param), true); in Query()
148 public Query(Query.op op, Query[] subqs) { in Query() method in Query
149 this(XapianJNI.new_Query__SWIG_16(op.swigValue(), Query.cArrayUnwrap(subqs)), true); in Query()
153 public final static Query.op OP_AND = new Query.op("OP_AND");
154 public final static Query.op OP_OR = new Query.op("OP_OR");
155 public final static Query.op OP_AND_NOT = new Query.op("OP_AND_NOT");
156 public final static Query.op OP_XOR = new Query.op("OP_XOR");
157 public final static Query.op OP_AND_MAYBE = new Query.op("OP_AND_MAYBE");
158 public final static Query.op OP_FILTER = new Query.op("OP_FILTER");
159 public final static Query.op OP_NEAR = new Query.op("OP_NEAR");
160 public final static Query.op OP_PHRASE = new Query.op("OP_PHRASE");
161 public final static Query.op OP_VALUE_RANGE = new Query.op("OP_VALUE_RANGE");
162 public final static Query.op OP_SCALE_WEIGHT = new Query.op("OP_SCALE_WEIGHT");
163 public final static Query.op OP_ELITE_SET = new Query.op("OP_ELITE_SET");
164 public final static Query.op OP_VALUE_GE = new Query.op("OP_VALUE_GE");
165 public final static Query.op OP_VALUE_LE = new Query.op("OP_VALUE_LE");
166 public final static Query.op OP_SYNONYM = new Query.op("OP_SYNONYM");