hydra.ext.fr.inria.coq.syntax.ImplicitBinders 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
// Note: this is an automatically generated file. Do not edit.
package hydra.ext.fr.inria.coq.syntax;
import java.io.Serializable;
/**
* In the context of a function definition, these forms specify that name is an implicit argument.
*/
public abstract class ImplicitBinders implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/fr/inria/coq/syntax.ImplicitBinders");
public static final hydra.core.Name FIELD_NAME_MAXIMALLY_INSERTED = new hydra.core.Name("maximallyInserted");
public static final hydra.core.Name FIELD_NAME_NON_MAXIMALLY_INSERTED = new hydra.core.Name("nonMaximallyInserted");
private ImplicitBinders () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(MaximallyInserted instance) ;
R visit(NonMaximallyInserted instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(ImplicitBinders instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(MaximallyInserted instance) {
return otherwise((instance));
}
default R visit(NonMaximallyInserted instance) {
return otherwise((instance));
}
}
/**
* The first form, with curly braces, makes name a maximally inserted implicit argument
*/
public static final class MaximallyInserted extends hydra.ext.fr.inria.coq.syntax.ImplicitBinders implements Serializable {
public final hydra.ext.fr.inria.coq.syntax.TypeBinders value;
public MaximallyInserted (hydra.ext.fr.inria.coq.syntax.TypeBinders value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof MaximallyInserted)) {
return false;
}
MaximallyInserted o = (MaximallyInserted) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
/**
* The second form, with square brackets, makes name a non-maximally inserted implicit argument.
*/
public static final class NonMaximallyInserted extends hydra.ext.fr.inria.coq.syntax.ImplicitBinders implements Serializable {
public final hydra.ext.fr.inria.coq.syntax.TypeBinders value;
public NonMaximallyInserted (hydra.ext.fr.inria.coq.syntax.TypeBinders value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof NonMaximallyInserted)) {
return false;
}
NonMaximallyInserted o = (NonMaximallyInserted) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}