hydra.ext.io.shex.syntax.ShapeOrRef 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 ShapeOrRef implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/io/shex/syntax.ShapeOrRef");
public static final hydra.core.Name FIELD_NAME_SHAPE_DEFINITION = new hydra.core.Name("shapeDefinition");
public static final hydra.core.Name FIELD_NAME_ATP_NAME_LN = new hydra.core.Name("atpNameLn");
public static final hydra.core.Name FIELD_NAME_ATP_NAME_NS = new hydra.core.Name("atpNameNs");
public static final hydra.core.Name FIELD_NAME_SEQUENCE = new hydra.core.Name("sequence");
private ShapeOrRef () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(ShapeDefinition instance) ;
R visit(AtpNameLn instance) ;
R visit(AtpNameNs instance) ;
R visit(Sequence instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(ShapeOrRef instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(ShapeDefinition instance) {
return otherwise((instance));
}
default R visit(AtpNameLn instance) {
return otherwise((instance));
}
default R visit(AtpNameNs instance) {
return otherwise((instance));
}
default R visit(Sequence instance) {
return otherwise((instance));
}
}
public static final class ShapeDefinition extends hydra.ext.io.shex.syntax.ShapeOrRef implements Serializable {
public final hydra.ext.io.shex.syntax.ShapeDefinition value;
public ShapeDefinition (hydra.ext.io.shex.syntax.ShapeDefinition value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof ShapeDefinition)) {
return false;
}
ShapeDefinition o = (ShapeDefinition) (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 AtpNameLn extends hydra.ext.io.shex.syntax.ShapeOrRef implements Serializable {
public final hydra.ext.io.shex.syntax.AtpNameLn value;
public AtpNameLn (hydra.ext.io.shex.syntax.AtpNameLn value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof AtpNameLn)) {
return false;
}
AtpNameLn o = (AtpNameLn) (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 AtpNameNs extends hydra.ext.io.shex.syntax.ShapeOrRef implements Serializable {
public final hydra.ext.io.shex.syntax.AtpNameNs value;
public AtpNameNs (hydra.ext.io.shex.syntax.AtpNameNs value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof AtpNameNs)) {
return false;
}
AtpNameNs o = (AtpNameNs) (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 Sequence extends hydra.ext.io.shex.syntax.ShapeOrRef implements Serializable {
public final hydra.ext.io.shex.syntax.ShapeExprLabel value;
public Sequence (hydra.ext.io.shex.syntax.ShapeExprLabel value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Sequence)) {
return false;
}
Sequence o = (Sequence) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}