Skip to content

Commit ab92aaa

Browse files
author
Ajay Kannan
committed
---
yaml --- r: 6333 b: refs/heads/tswast-patch-1 c: 460948e h: refs/heads/master i: 6331: f4e67a7
1 parent dc2f6a8 commit ab92aaa

2 files changed

Lines changed: 25 additions & 25 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 30992ae5744b0e35606a06c34e7dcc9fe9a4f6f9
60+
refs/heads/tswast-patch-1: 460948e399c0b5a869d5f67e87b6fea4deed608f
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-datastore/src/main/java/com/google/gcloud/datastore/StructuredQuery.java

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -260,67 +260,67 @@ public boolean equals(Object obj) {
260260
&& Objects.equals(value, other.value);
261261
}
262262

263-
public static PropertyFilter le(String property, Value<?> value) {
263+
public static PropertyFilter lt(String property, Value<?> value) {
264264
return new PropertyFilter(property, Operator.LESS_THAN, value);
265265
}
266266

267-
public static PropertyFilter le(String property, String value) {
267+
public static PropertyFilter lt(String property, String value) {
268268
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
269269
}
270270

271-
public static PropertyFilter le(String property, long value) {
271+
public static PropertyFilter lt(String property, long value) {
272272
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
273273
}
274274

275-
public static PropertyFilter le(String property, double value) {
275+
public static PropertyFilter lt(String property, double value) {
276276
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
277277
}
278278

279-
public static PropertyFilter le(String property, boolean value) {
279+
public static PropertyFilter lt(String property, boolean value) {
280280
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
281281
}
282282

283-
public static PropertyFilter le(String property, DateTime value) {
283+
public static PropertyFilter lt(String property, DateTime value) {
284284
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
285285
}
286286

287-
public static PropertyFilter le(String property, Key value) {
287+
public static PropertyFilter lt(String property, Key value) {
288288
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
289289
}
290290

291-
public static PropertyFilter le(String property, Blob value) {
291+
public static PropertyFilter lt(String property, Blob value) {
292292
return new PropertyFilter(property, Operator.LESS_THAN, of(value));
293293
}
294294

295-
public static PropertyFilter lte(String property, Value<?> value) {
295+
public static PropertyFilter le(String property, Value<?> value) {
296296
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, value);
297297
}
298298

299-
public static PropertyFilter lte(String property, String value) {
299+
public static PropertyFilter le(String property, String value) {
300300
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
301301
}
302302

303-
public static PropertyFilter lte(String property, long value) {
303+
public static PropertyFilter le(String property, long value) {
304304
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
305305
}
306306

307-
public static PropertyFilter lte(String property, double value) {
307+
public static PropertyFilter le(String property, double value) {
308308
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
309309
}
310310

311-
public static PropertyFilter lte(String property, boolean value) {
311+
public static PropertyFilter le(String property, boolean value) {
312312
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
313313
}
314314

315-
public static PropertyFilter lte(String property, DateTime value) {
315+
public static PropertyFilter le(String property, DateTime value) {
316316
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
317317
}
318318

319-
public static PropertyFilter lte(String property, Key value) {
319+
public static PropertyFilter le(String property, Key value) {
320320
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
321321
}
322322

323-
public static PropertyFilter lte(String property, Blob value) {
323+
public static PropertyFilter le(String property, Blob value) {
324324
return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value));
325325
}
326326

@@ -356,35 +356,35 @@ public static PropertyFilter gt(String property, Blob value) {
356356
return new PropertyFilter(property, Operator.GREATER_THAN, of(value));
357357
}
358358

359-
public static PropertyFilter gte(String property, Value<?> value) {
359+
public static PropertyFilter ge(String property, Value<?> value) {
360360
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, value);
361361
}
362362

363-
public static PropertyFilter gte(String property, String value) {
363+
public static PropertyFilter ge(String property, String value) {
364364
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
365365
}
366366

367-
public static PropertyFilter gte(String property, long value) {
367+
public static PropertyFilter ge(String property, long value) {
368368
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
369369
}
370370

371-
public static PropertyFilter gte(String property, double value) {
371+
public static PropertyFilter ge(String property, double value) {
372372
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
373373
}
374374

375-
public static PropertyFilter gte(String property, boolean value) {
375+
public static PropertyFilter ge(String property, boolean value) {
376376
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
377377
}
378378

379-
public static PropertyFilter gte(String property, DateTime value) {
379+
public static PropertyFilter ge(String property, DateTime value) {
380380
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
381381
}
382382

383-
public static PropertyFilter gte(String property, Key value) {
383+
public static PropertyFilter ge(String property, Key value) {
384384
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
385385
}
386386

387-
public static PropertyFilter gte(String property, Blob value) {
387+
public static PropertyFilter ge(String property, Blob value) {
388388
return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value));
389389
}
390390

0 commit comments

Comments
 (0)