PredicateUtilities.java 1004B

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