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