hydra.ext.org.w3.owl.syntax.DisjointDataProperties 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.w3.owl.syntax;
import java.io.Serializable;
public class DisjointDataProperties implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/w3/owl/syntax.DisjointDataProperties");
public static final hydra.core.Name FIELD_NAME_ANNOTATIONS = new hydra.core.Name("annotations");
public static final hydra.core.Name FIELD_NAME_PROPERTIES = new hydra.core.Name("properties");
public final java.util.List annotations;
public final java.util.List properties;
public DisjointDataProperties (java.util.List annotations, java.util.List properties) {
java.util.Objects.requireNonNull((annotations));
java.util.Objects.requireNonNull((properties));
this.annotations = annotations;
this.properties = properties;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof DisjointDataProperties)) {
return false;
}
DisjointDataProperties o = (DisjointDataProperties) (other);
return annotations.equals(o.annotations) && properties.equals(o.properties);
}
@Override
public int hashCode() {
return 2 * annotations.hashCode() + 3 * properties.hashCode();
}
public DisjointDataProperties withAnnotations(java.util.List annotations) {
java.util.Objects.requireNonNull((annotations));
return new DisjointDataProperties(annotations, properties);
}
public DisjointDataProperties withProperties(java.util.List properties) {
java.util.Objects.requireNonNull((properties));
return new DisjointDataProperties(annotations, properties);
}
}