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