Package one.tranic.scorpio.api.util
Object Mth
-
- All Implemented Interfaces:
public class Mth
Utility object for mathematical and numerical operations in the Scorpio API. This object provides methods to validate number inputs.
- Since:
1.0.0
-
-
Method Summary
Modifier and Type Method Description final Boolean
isValidNumber(String input)
Checks if the given input string represents a valid number within the range of -1000 to 1000. -
-
Method Detail
-
isValidNumber
final Boolean isValidNumber(String input)
Checks if the given input string represents a valid number within the range of -1000 to 1000.
- Parameters:
input
- the string input to be validated- Returns:
true if the input is a valid integer within the specified range, false otherwise
- Since:
1.0.0
-
-
-
-