| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -260,67 +260,67 @@ public boolean equals(Object obj) { | |||
| 260 | 260 | && Objects.equals(value, other.value); | |
| 261 | 261 | } | |
| 262 | 262 | ||
| 263 | - public static PropertyFilter le(String property, Value<?> value) { | ||
| 263 | + public static PropertyFilter lt(String property, Value<?> value) { | ||
| 264 | 264 | return new PropertyFilter(property, Operator.LESS_THAN, value); | |
| 265 | 265 | } | |
| 266 | 266 | ||
| 267 | - public static PropertyFilter le(String property, String value) { | ||
| 267 | + public static PropertyFilter lt(String property, String value) { | ||
| 268 | 268 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 269 | 269 | } | |
| 270 | 270 | ||
| 271 | - public static PropertyFilter le(String property, long value) { | ||
| 271 | + public static PropertyFilter lt(String property, long value) { | ||
| 272 | 272 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 273 | 273 | } | |
| 274 | 274 | ||
| 275 | - public static PropertyFilter le(String property, double value) { | ||
| 275 | + public static PropertyFilter lt(String property, double value) { | ||
| 276 | 276 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 277 | 277 | } | |
| 278 | 278 | ||
| 279 | - public static PropertyFilter le(String property, boolean value) { | ||
| 279 | + public static PropertyFilter lt(String property, boolean value) { | ||
| 280 | 280 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 281 | 281 | } | |
| 282 | 282 | ||
| 283 | - public static PropertyFilter le(String property, DateTime value) { | ||
| 283 | + public static PropertyFilter lt(String property, DateTime value) { | ||
| 284 | 284 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 285 | 285 | } | |
| 286 | 286 | ||
| 287 | - public static PropertyFilter le(String property, Key value) { | ||
| 287 | + public static PropertyFilter lt(String property, Key value) { | ||
| 288 | 288 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 289 | 289 | } | |
| 290 | 290 | ||
| 291 | - public static PropertyFilter le(String property, Blob value) { | ||
| 291 | + public static PropertyFilter lt(String property, Blob value) { | ||
| 292 | 292 | return new PropertyFilter(property, Operator.LESS_THAN, of(value)); | |
| 293 | 293 | } | |
| 294 | 294 | ||
| 295 | - public static PropertyFilter lte(String property, Value<?> value) { | ||
| 295 | + public static PropertyFilter le(String property, Value<?> value) { | ||
| 296 | 296 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, value); | |
| 297 | 297 | } | |
| 298 | 298 | ||
| 299 | - public static PropertyFilter lte(String property, String value) { | ||
| 299 | + public static PropertyFilter le(String property, String value) { | ||
| 300 | 300 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 301 | 301 | } | |
| 302 | 302 | ||
| 303 | - public static PropertyFilter lte(String property, long value) { | ||
| 303 | + public static PropertyFilter le(String property, long value) { | ||
| 304 | 304 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 305 | 305 | } | |
| 306 | 306 | ||
| 307 | - public static PropertyFilter lte(String property, double value) { | ||
| 307 | + public static PropertyFilter le(String property, double value) { | ||
| 308 | 308 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 309 | 309 | } | |
| 310 | 310 | ||
| 311 | - public static PropertyFilter lte(String property, boolean value) { | ||
| 311 | + public static PropertyFilter le(String property, boolean value) { | ||
| 312 | 312 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 313 | 313 | } | |
| 314 | 314 | ||
| 315 | - public static PropertyFilter lte(String property, DateTime value) { | ||
| 315 | + public static PropertyFilter le(String property, DateTime value) { | ||
| 316 | 316 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 317 | 317 | } | |
| 318 | 318 | ||
| 319 | - public static PropertyFilter lte(String property, Key value) { | ||
| 319 | + public static PropertyFilter le(String property, Key value) { | ||
| 320 | 320 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 321 | 321 | } | |
| 322 | 322 | ||
| 323 | - public static PropertyFilter lte(String property, Blob value) { | ||
| 323 | + public static PropertyFilter le(String property, Blob value) { | ||
| 324 | 324 | return new PropertyFilter(property, Operator.LESS_THAN_OR_EQUAL, of(value)); | |
| 325 | 325 | } | |
| 326 | 326 | ||
@@ -356,35 +356,35 @@ public static PropertyFilter gt(String property, Blob value) { | |||
| 356 | 356 | return new PropertyFilter(property, Operator.GREATER_THAN, of(value)); | |
| 357 | 357 | } | |
| 358 | 358 | ||
| 359 | - public static PropertyFilter gte(String property, Value<?> value) { | ||
| 359 | + public static PropertyFilter ge(String property, Value<?> value) { | ||
| 360 | 360 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, value); | |
| 361 | 361 | } | |
| 362 | 362 | ||
| 363 | - public static PropertyFilter gte(String property, String value) { | ||
| 363 | + public static PropertyFilter ge(String property, String value) { | ||
| 364 | 364 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 365 | 365 | } | |
| 366 | 366 | ||
| 367 | - public static PropertyFilter gte(String property, long value) { | ||
| 367 | + public static PropertyFilter ge(String property, long value) { | ||
| 368 | 368 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 369 | 369 | } | |
| 370 | 370 | ||
| 371 | - public static PropertyFilter gte(String property, double value) { | ||
| 371 | + public static PropertyFilter ge(String property, double value) { | ||
| 372 | 372 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 373 | 373 | } | |
| 374 | 374 | ||
| 375 | - public static PropertyFilter gte(String property, boolean value) { | ||
| 375 | + public static PropertyFilter ge(String property, boolean value) { | ||
| 376 | 376 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 377 | 377 | } | |
| 378 | 378 | ||
| 379 | - public static PropertyFilter gte(String property, DateTime value) { | ||
| 379 | + public static PropertyFilter ge(String property, DateTime value) { | ||
| 380 | 380 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 381 | 381 | } | |
| 382 | 382 | ||
| 383 | - public static PropertyFilter gte(String property, Key value) { | ||
| 383 | + public static PropertyFilter ge(String property, Key value) { | ||
| 384 | 384 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 385 | 385 | } | |
| 386 | 386 | ||
| 387 | - public static PropertyFilter gte(String property, Blob value) { | ||
| 387 | + public static PropertyFilter ge(String property, Blob value) { | ||
| 388 | 388 | return new PropertyFilter(property, Operator.GREATER_THAN_OR_EQUAL, of(value)); | |
| 389 | 389 | } | |
| 390 | 390 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments