433434435436437438439
*/ public <Y extends Comparable<? super Y>> Predicate greaterThanOrEqualTo( Expression<? extends Y> x, Y y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN_OR_EQUAL, x, y ); }
443444445446447448449
*/ public<Y extends Comparable<? super Y>> Predicate lessThanOrEqualTo( Expression<? extends Y> x, Y y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN_OR_EQUAL, x, y ); }
451452453454455456457
/** * {@inheritDoc} */ public Predicate gt(Expression<? extends Number> x, Expression<? extends Number> y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN, x, y ); }
459460461462463464465
/** * {@inheritDoc} */ public Predicate lt(Expression<? extends Number> x, Expression<? extends Number> y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN, x, y ); }
467468469470471472473
/** * {@inheritDoc} */ public Predicate ge(Expression<? extends Number> x, Expression<? extends Number> y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN_OR_EQUAL, x, y ); }
475476477478479480481
/** * {@inheritDoc} */ public Predicate le(Expression<? extends Number> x, Expression<? extends Number> y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN_OR_EQUAL, x, y ); }
483484485486487488489
/** * {@inheritDoc} */ public Predicate gt(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN, x, y ); }
491492493494495496497
/** * {@inheritDoc} */ public Predicate lt(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN, x, y ); }
499500501502503504505
/** * {@inheritDoc} */ public Predicate ge(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN_OR_EQUAL, x, y ); }
507508509510511512513
/** * {@inheritDoc} */ public Predicate le(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN_OR_EQUAL, x, y ); }