1.3.9
1.3.9
- Added 6 new utility method to CommandArguments class.
- CommandArguments#isNumeric(int) - Checks if the value obtained from the argument at the specified index is numeric.
- CommandArguments#isNumeric(String) - Checks if the given string is numeric, i.e., if it contains only digit characters (0-9).
- CommandArguments#isInteger(int) - Checks if the value obtained from the argument at the specified index can be successfully parsed into an integer.
- CommandArguments#isInteger(String) - Checks if the given string can be successfully parsed into an integer.
- CommandArguments#isFloatingDecimal(int) - Checks if the value obtained from the argument at the specified index can be successfully parsed into a floating-point decimal
- CommandArguments#isFloatingDecimal(String) - Checks if the given string can be successfully parsed into a floating decimal.
Full Changelog: 1.3.8...1.3.9