hydra.langs.sql.ansi.DateString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hydra-java Show documentation
Show all versions of hydra-java Show documentation
The Hydra language for strongly-typed transformations
// Note: this is an automatically generated file. Do not edit.
package hydra.langs.sql.ansi;
import java.io.Serializable;
public class DateString implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/langs/sql/ansi.DateString");
public DateString () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof DateString)) {
return false;
}
DateString o = (DateString) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
}