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