hydra.ext.org.ansi.sql.syntax.UnsignedNumericLiteral 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.org.ansi.sql.syntax;
import java.io.Serializable;
public abstract class UnsignedNumericLiteral implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/ansi/sql/syntax.UnsignedNumericLiteral");
public static final hydra.core.Name FIELD_NAME_EXACT = new hydra.core.Name("exact");
public static final hydra.core.Name FIELD_NAME_APPROXIMATE = new hydra.core.Name("approximate");
private UnsignedNumericLiteral () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Exact instance) ;
R visit(Approximate instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(UnsignedNumericLiteral instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Exact instance) {
return otherwise((instance));
}
default R visit(Approximate instance) {
return otherwise((instance));
}
}
public static final class Exact extends hydra.ext.org.ansi.sql.syntax.UnsignedNumericLiteral implements Serializable {
public final hydra.ext.org.ansi.sql.syntax.ExactNumericLiteral value;
public Exact (hydra.ext.org.ansi.sql.syntax.ExactNumericLiteral value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Exact)) {
return false;
}
Exact o = (Exact) (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 Approximate extends hydra.ext.org.ansi.sql.syntax.UnsignedNumericLiteral implements Serializable {
public final hydra.ext.org.ansi.sql.syntax.ApproximateNumericLiteral value;
public Approximate (hydra.ext.org.ansi.sql.syntax.ApproximateNumericLiteral value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Approximate)) {
return false;
}
Approximate o = (Approximate) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}