it.xsemantics.runtime.Result Maven / Gradle / Ivy
/**
*
*/
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