We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All of the below should give invalid message/error if:
Also, if there is no value, they should be set to ... -1?
-1
This will avoid code like the following in calling methods:
Integer myInteger = IntegerValidator.getInstance().validate(settings.jobId()); int jobId = myInteger.intValue();
which instead should be as "easy" as:
int jobId = Integer.parseInt(settings.jobId());
... or settings should return int values directly ...
affected settings:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
All of the below should give invalid message/error if:
Also, if there is no value, they should be set to ...
-1
?This will avoid code like the following in calling methods:
which instead should be as "easy" as:
... or settings should return int values directly ...
affected settings:
The text was updated successfully, but these errors were encountered: