| | |
| | | public static boolean isDouble(String str) { |
| | | try { |
| | | Double num2 = Double.valueOf(str); |
| | | logger.debug(num2 + " is a valid numeric string!"); |
| | | // logger.debug(num2 + " is a valid numeric string!"); |
| | | return true; |
| | | } catch (Exception e) { |
| | | logger.debug(str + " is an invalid numeric string!"); |
| | | // logger.debug(str + " is an invalid numeric string!"); |
| | | return false; |
| | | } |
| | | } |
| | |
| | | public static boolean isInteger(String str) { |
| | | try { |
| | | int num2 = Integer.valueOf(str); |
| | | logger.debug(num2 + " is an integer!"); |
| | | // logger.debug(num2 + " is an integer!"); |
| | | return true; |
| | | } catch (Exception e) { |
| | | logger.debug(str + " is not an integer!"); |
| | | // logger.debug(str + " is not an integer!"); |
| | | return false; |
| | | } |
| | | } |