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