implement a whole bunch of simple methods.

PredicateUtilities.java 1.0KB

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