(String type)
| 401 | |
| 402 | |
| 403 | public static boolean isBooleanOrNumber(String type) { |
| 404 | type = StringUtil.toUpperCase(type, true); |
| 405 | return type.isEmpty() || (type.endsWith("INT") && type.endsWith("POINT") == false) |
| 406 | || type.endsWith("BOOLEAN") || type.endsWith("ENUM") |
| 407 | || type.endsWith("FLOAT") || type.endsWith("DOUBLE") || type.endsWith("DECIMAL"); |
| 408 | } |
| 409 | |
| 410 | |
| 411 | } |
no test coverage detected