462463464465466467468
*/ 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 ); }
472473474475476477478
*/ 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 ); }
480481482483484485486
/** * {@inheritDoc} */ public Predicate gt(Expression<? extends Number> x, Expression<? extends Number> y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN, x, y ); }
488489490491492493494
/** * {@inheritDoc} */ public Predicate lt(Expression<? extends Number> x, Expression<? extends Number> y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN, x, y ); }
496497498499500501502
/** * {@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 ); }
504505506507508509510
/** * {@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 ); }
512513514515516517518
/** * {@inheritDoc} */ public Predicate gt(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN, x, y ); }
520521522523524525526
/** * {@inheritDoc} */ public Predicate lt(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN, x, y ); }
528529530531532533534
/** * {@inheritDoc} */ public Predicate ge(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.GREATER_THAN_OR_EQUAL, x, y ); }
536537538539540541542
/** * {@inheritDoc} */ public Predicate le(Expression<? extends Number> x, Number y) { //noinspection SuspiciousNameCombination return new ComparisonPredicate( this, ComparisonOperator.LESS_THAN_OR_EQUAL, x, y ); }