All Downloads are FREE. Search and download functionalities are using the official Maven repository.

devutility.internal.lang.IntegerConvertResult Maven / Gradle / Ivy

There is a newer version: 1.3.8.1
Show newest version
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