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

it.xsemantics.runtime.Result Maven / Gradle / Ivy

There is a newer version: 1.12.1
Show newest version
/**
 * 
 */
package it.xsemantics.runtime;

/**
 * The result of a rule invocation
 * 
 * @author Lorenzo Bettini
 * 
 */
public class Result extends ResultWithFailure {

	private T value;

	public Result(T value) {
		super();
		this.value = value;
	}

	public Result(RuleFailedException ruleFailedException) {
		super(ruleFailedException);
	}

	public T getValue() {
		return value;
	}

	public T getFirst() {
		return value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy