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