123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. else {
  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. else {
  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. else {
  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. else {
  47. return false;}
  48. }
  49. }