校验正整数+0 @param param 参数 @return
(String param)
| 144 | * @return |
| 145 | */ |
| 146 | public static boolean isPositiveIntegerZero(String param){ |
| 147 | if (INTEGER_POSITIVE_ZERO.matcher(param).matches()) { |
| 148 | return true; |
| 149 | } |
| 150 | return false; |
| 151 | } |
| 152 | |
| 153 | |
| 154 |
no test coverage detected