it.xsemantics.runtime.Result3 Maven / Gradle / Ivy
/**
*
*/
package it.xsemantics.runtime;
/**
* @author Lorenzo Bettini
*
*/
public class Result3 extends Result2 {
private T third;
public Result3(F first) {
super(first);
}
public Result3(F first, S second) {
super(first, second);
}
public Result3(F first, S second, T third) {
this(first, second);
this.third = third;
}
public Result3(RuleFailedException ruleFailedException) {
super(ruleFailedException);
}
public T getThird() {
return third;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy