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