NumberConstant.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. package com.imed.costaccount.common.constants;
  2. /**
  3. * 数字设置
  4. */
  5. public final class NumberConstant {
  6. public NumberConstant() {
  7. }
  8. /**
  9. * 零
  10. */
  11. public static final Integer ZERO = 0;
  12. /**
  13. * 一
  14. */
  15. public static final Integer ONE = 1;
  16. /**
  17. * 二
  18. */
  19. public static final Integer TWO = 2;
  20. /**
  21. * 三
  22. */
  23. public static final Integer THREE = 3;
  24. /**
  25. * 四
  26. */
  27. public static final Integer FOUR = 4;
  28. /**
  29. * 五
  30. */
  31. public static final Integer FIVE = 5;
  32. /**
  33. * 六
  34. */
  35. public static final Integer SIX = 6;
  36. /**
  37. * 七
  38. */
  39. public static final Integer SEVEN = 7;
  40. /**
  41. * 八
  42. */
  43. public static final Integer EIGHT = 8;
  44. /**
  45. * 九
  46. */
  47. public static final Integer NINE = 9;
  48. /**
  49. * 10
  50. */
  51. public static final Integer TEN = 10;
  52. /**
  53. * 二十四
  54. */
  55. public static final Integer TWENTY_FOUR = 24;
  56. /**
  57. * 三十
  58. */
  59. public static final Integer THIRTY = 30;
  60. /**
  61. * 五十八
  62. */
  63. public static final Integer FIFTY_EIGHT = 58;
  64. /**
  65. * 五十九
  66. */
  67. public static final Integer FIFTY_NINE = 59;
  68. /**
  69. * 一百
  70. */
  71. public static final Integer ONE_HUNDRED = 100;
  72. /**
  73. * 一千
  74. */
  75. public static final Integer ONE_THOUSAND = 1000;
  76. /**
  77. * 负一
  78. */
  79. public static final Integer NEGATIVE = -1;
  80. }