hydra.langs.cypher.openCypher.SingleQuery Maven / Gradle / Ivy
package hydra.langs.cypher.openCypher;
import java.io.Serializable;
public abstract class SingleQuery implements Serializable {
public static final hydra.core.Name NAME = new hydra.core.Name("hydra/langs/cypher/openCypher.SingleQuery");
private SingleQuery () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(SinglePart instance) ;
R visit(MultiPart instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(SingleQuery instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(SinglePart instance) {
return otherwise((instance));
}
default R visit(MultiPart instance) {
return otherwise((instance));
}
}
public static final class SinglePart extends hydra.langs.cypher.openCypher.SingleQuery implements Serializable {
public final hydra.langs.cypher.openCypher.SinglePartQuery value;
public SinglePart (hydra.langs.cypher.openCypher.SinglePartQuery value) {
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof SinglePart)) {
return false;
}
SinglePart o = (SinglePart) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class MultiPart extends hydra.langs.cypher.openCypher.SingleQuery implements Serializable {
public final hydra.langs.cypher.openCypher.MultiPartQuery value;
public MultiPart (hydra.langs.cypher.openCypher.MultiPartQuery value) {
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof MultiPart)) {
return false;
}
MultiPart o = (MultiPart) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy