devutility.internal.lang.IntegerUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devutility.internal Show documentation
Show all versions of devutility.internal Show documentation
Utilities for Java development
package devutility.internal.lang;
public class IntegerUtils {
public static boolean isNumberic(String value) {
for (int i = 0; i < value.length(); i++) {
if (!Character.isDigit(value.charAt(i))) {
return false;
}
}
return true;
}
public static IntegerConvertResult tryParse(String value) {
IntegerConvertResult result = new IntegerConvertResult();
if (!isNumberic(value)) {
result.setSucceeded(false);
return result;
}
result.setResult(Integer.valueOf(value));
result.setSucceeded(true);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy