hydra.ext.org.w3.owl.syntax.DataProperty 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.org.w3.owl.syntax;
import java.io.Serializable;
public class DataProperty implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/w3/owl/syntax.DataProperty");
public DataProperty () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof DataProperty)) {
return false;
}
DataProperty o = (DataProperty) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
}