PredicateUtilities.java 1008B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * Created by dan on 6/14/17.
  3. */
  4. public class PredicateUtilities {
  5. /**
  6. * @param x
  7. * @param y
  8. * @return true if `x` is greater than `y`
  9. */
  10. public Boolean isGreaterThan(int x, int y) {
  11. if(x>y){
  12. return true;
  13. }
  14. return false;
  15. }
  16. /**
  17. * @param x
  18. * @param y
  19. * @return true if `x` is less than `y`
  20. */
  21. public Boolean isLessThan(int x, int y) {
  22. if(x<y){
  23. return true;
  24. }
  25. return false;
  26. }
  27. /**
  28. * @param x
  29. * @param y
  30. * @return true if `x` is greater than or equal to `y`
  31. */
  32. public Boolean isGreaterThanOrEqualTo(int x, int y) {
  33. if(x>=y) {
  34. return true;
  35. }
  36. return false;
  37. }
  38. /**
  39. * @param x
  40. * @param y
  41. * @return true if `x` is less than or equal to `y`
  42. */
  43. public Boolean isLessThanOrEqualTo(int x, int y) {
  44. if(x<=y) {
  45. return true;
  46. }
  47. return false;
  48. }
  49. }