PredicateUtilities.java 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. boolean f = false;
  12. if (x > y){
  13. f = true;
  14. }
  15. return f;
  16. }
  17. /**
  18. * @param x
  19. * @param y
  20. * @return true if `x` is less than `y`
  21. */
  22. public Boolean isLessThan(int x, int y) {
  23. boolean f = false;
  24. if (x < y){
  25. f = true;
  26. }
  27. return f;
  28. }
  29. /**
  30. * @param x
  31. * @param y
  32. * @return true if `x` is greater than or equal to `y`
  33. */
  34. public Boolean isGreaterThanOrEqualTo(int x, int y) {
  35. boolean f = false;
  36. if (x >= y){
  37. f = true;
  38. }
  39. return f;
  40. }
  41. /**
  42. * @param x
  43. * @param y
  44. * @return true if `x` is less than or equal to `y`
  45. */
  46. public Boolean isLessThanOrEqualTo(int x, int y) {
  47. boolean f = false;
  48. if (x <= y){
  49. f = true;
  50. }
  51. return f;
  52. }
  53. }