hydra.ext.org.w3.owl.syntax.ObjectAllValuesFrom 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 ObjectAllValuesFrom implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/w3/owl/syntax.ObjectAllValuesFrom");
public static final hydra.core.Name FIELD_NAME_PROPERTY = new hydra.core.Name("property");
public static final hydra.core.Name FIELD_NAME_CLASS = new hydra.core.Name("class");
public final hydra.ext.org.w3.owl.syntax.ObjectPropertyExpression property;
public final hydra.ext.org.w3.owl.syntax.ClassExpression class_;
public ObjectAllValuesFrom (hydra.ext.org.w3.owl.syntax.ObjectPropertyExpression property, hydra.ext.org.w3.owl.syntax.ClassExpression class_) {
java.util.Objects.requireNonNull((property));
java.util.Objects.requireNonNull((class_));
this.property = property;
this.class_ = class_;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof ObjectAllValuesFrom)) {
return false;
}
ObjectAllValuesFrom o = (ObjectAllValuesFrom) (other);
return property.equals(o.property) && class_.equals(o.class_);
}
@Override
public int hashCode() {
return 2 * property.hashCode() + 3 * class_.hashCode();
}
public ObjectAllValuesFrom withProperty(hydra.ext.org.w3.owl.syntax.ObjectPropertyExpression property) {
java.util.Objects.requireNonNull((property));
return new ObjectAllValuesFrom(property, class_);
}
public ObjectAllValuesFrom withClass(hydra.ext.org.w3.owl.syntax.ClassExpression class_) {
java.util.Objects.requireNonNull((class_));
return new ObjectAllValuesFrom(property, class_);
}
}