校验数值类型 @param param 参数 @return
(String param)
| 84 | * @return |
| 85 | */ |
| 86 | public static boolean isNumeric(String param){ |
| 87 | if (INTEGER.matcher(param).matches()) { |
| 88 | return true; |
| 89 | } |
| 90 | return false; |
| 91 | } |
| 92 | /** |
| 93 | * 校验浮点类型 |
| 94 | * @param param 参数 |
no test coverage detected