Check if the given object is a number. @param obj The object to check @return true if the object is a number
(final Object obj)
| 438 | * @return true if the object is a number |
| 439 | */ |
| 440 | public static boolean isNumber(final Object obj) { |
| 441 | return (obj != null && isNumberType(obj.getClass())); |
| 442 | } |
| 443 | |
| 444 | /** |
| 445 | * Check if the given class is a number type. |
no test coverage detected