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