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