1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
-
-
- /**
- * 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) {
- if(x>y)
- {
- return true;
- }
- else
- { return false;
- }
- }
- /**
- * @param x
- * @param y
- * @return true if `x` is less than `y`
- */
- public Boolean isLessThan(int x, int y) {
- if(x<y)
- {
- return true;
- }
- else
- { return false;
- }
- }
-
- /**
- * @param x
- * @param y
- * @return true if `x` is greater than or equal to `y`
- */
- public Boolean isGreaterThanOrEqualTo(int x, int y) {
- if(x == y)
- {
- return true;
- }
- else
- { return false;
- }
- }
-
- /**
- * @param x
- * @param y
- * @return true if `x` is less than or equal to `y`
- */
- public Boolean isLessThanOrEqualTo(int x, int y) {
- if(x<=y)
- {
- return true;
- }
- else
- { return false;
- }
- }
- }
|