hydra.ext.org.ansi.sql.syntax.BooleanTest 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 class BooleanTest implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/ansi/sql/syntax.BooleanTest");
public static final hydra.core.Name FIELD_NAME_BOOLEAN_PRIMARY = new hydra.core.Name("booleanPrimary");
public static final hydra.core.Name FIELD_NAME_SEQUENCE = new hydra.core.Name("sequence");
public final hydra.ext.org.ansi.sql.syntax.BooleanPrimary booleanPrimary;
public final hydra.util.Opt sequence;
public BooleanTest (hydra.ext.org.ansi.sql.syntax.BooleanPrimary booleanPrimary, hydra.util.Opt sequence) {
java.util.Objects.requireNonNull((booleanPrimary));
java.util.Objects.requireNonNull((sequence));
this.booleanPrimary = booleanPrimary;
this.sequence = sequence;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof BooleanTest)) {
return false;
}
BooleanTest o = (BooleanTest) (other);
return booleanPrimary.equals(o.booleanPrimary) && sequence.equals(o.sequence);
}
@Override
public int hashCode() {
return 2 * booleanPrimary.hashCode() + 3 * sequence.hashCode();
}
public BooleanTest withBooleanPrimary(hydra.ext.org.ansi.sql.syntax.BooleanPrimary booleanPrimary) {
java.util.Objects.requireNonNull((booleanPrimary));
return new BooleanTest(booleanPrimary, sequence);
}
public BooleanTest withSequence(hydra.util.Opt sequence) {
java.util.Objects.requireNonNull((sequence));
return new BooleanTest(booleanPrimary, sequence);
}
}