hydra.ext.datalog.syntax.Term Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hydra-ext Show documentation
Show all versions of hydra-ext Show documentation
Hydra language extensions in Java; models, coders, and utilities
The newest version!
// Note: this is an automatically generated file. Do not edit.
package hydra.ext.datalog.syntax;
import java.io.Serializable;
public abstract class Term implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/datalog/syntax.Term");
public static final hydra.core.Name FIELD_NAME_CONSTANT = new hydra.core.Name("constant");
public static final hydra.core.Name FIELD_NAME_VARIABLE = new hydra.core.Name("variable");
private Term () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Constant instance) ;
R visit(Variable instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(Term instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Constant instance) {
return otherwise((instance));
}
default R visit(Variable instance) {
return otherwise((instance));
}
}
public static final class Constant extends hydra.ext.datalog.syntax.Term implements Serializable {
public final hydra.ext.datalog.syntax.Constant value;
public Constant (hydra.ext.datalog.syntax.Constant value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Constant)) {
return false;
}
Constant o = (Constant) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Variable extends hydra.ext.datalog.syntax.Term implements Serializable {
public final hydra.ext.datalog.syntax.Variable value;
public Variable (hydra.ext.datalog.syntax.Variable value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Variable)) {
return false;
}
Variable o = (Variable) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}