hydra.langs.owl.syntax.ObjectIntersectionOf Maven / Gradle / Ivy
package hydra.langs.owl.syntax;
import java.io.Serializable;
public class ObjectIntersectionOf implements Serializable {
public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/owl/syntax.ObjectIntersectionOf");
public final java.util.List value;
public ObjectIntersectionOf (java.util.List value) {
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof ObjectIntersectionOf)) {
return false;
}
ObjectIntersectionOf o = (ObjectIntersectionOf) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy