devutility.internal.lang.IntegerConvertResult 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 IntegerConvertResult {
private boolean succeeded = false;
private int result = 0;
public boolean getSucceeded() {
return succeeded;
}
public void setSucceeded(boolean succeeded) {
this.succeeded = succeeded;
}
public int getResult() {
return result;
}
public void setResult(int result) {
this.result = result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy