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

io.github.icodegarden.nutrient.lang.result.Result Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.icodegarden.nutrient.lang.result;

import java.io.Serializable;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public class Result implements Serializable {

	private static final long serialVersionUID = -3518082018884860684L;

	final boolean success;

	Result(boolean success) {
		this.success = success;
	}

	public boolean isSuccess() {
		return success;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy