hydra.ext.io.shex.syntax.Plx 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.io.shex.syntax;
import java.io.Serializable;
public abstract class Plx implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/io/shex/syntax.Plx");
public static final hydra.core.Name FIELD_NAME_PERCENT = new hydra.core.Name("percent");
public static final hydra.core.Name FIELD_NAME_PN_LOCAL_ESC = new hydra.core.Name("pnLocalEsc");
private Plx () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Percent instance) ;
R visit(PnLocalEsc instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(Plx instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Percent instance) {
return otherwise((instance));
}
default R visit(PnLocalEsc instance) {
return otherwise((instance));
}
}
public static final class Percent extends hydra.ext.io.shex.syntax.Plx implements Serializable {
public final hydra.ext.io.shex.syntax.Percent value;
public Percent (hydra.ext.io.shex.syntax.Percent value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Percent)) {
return false;
}
Percent o = (Percent) (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 PnLocalEsc extends hydra.ext.io.shex.syntax.Plx implements Serializable {
public final hydra.ext.io.shex.syntax.PnLocalEsc value;
public PnLocalEsc (hydra.ext.io.shex.syntax.PnLocalEsc value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof PnLocalEsc)) {
return false;
}
PnLocalEsc o = (PnLocalEsc) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}