123456789101112131415161718192021222324252627282930313233343536373839404142 |
-
-
- /**
- * Created by dan on 6/14/17.
- */
- public class PredicateUtilities {
- /**
- * @param x
- * @param y
- * @return true if `x` is greater than `y`
- */
- public Boolean isGreaterThan(int x, int y) {
- return x>y;
- }
-
- /**
- * @param x
- * @param y
- * @return true if `x` is less than `y`
- */
- public Boolean isLessThan(int x, int y) {
- return x<y;
- }
-
- /**
- * @param x
- * @param y
- * @return true if `x` is greater than or equal to `y`
- */
- public Boolean isGreaterThanOrEqualTo(int x, int y) {
- return x>=y;
- }
-
- /**
- * @param x
- * @param y
- * @return true if `x` is less than or equal to `y`
- */
- public Boolean isLessThanOrEqualTo(int x, int y) {
- return x<=y;
- }
- }
|