hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection 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.org.apache.tinkerpop.gremlin;
import java.io.Serializable;
public abstract class TraversalDirection implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/apache/tinkerpop/gremlin.TraversalDirection");
public static final hydra.core.Name FIELD_NAME_IN = new hydra.core.Name("in");
public static final hydra.core.Name FIELD_NAME_OUT = new hydra.core.Name("out");
public static final hydra.core.Name FIELD_NAME_BOTH = new hydra.core.Name("both");
private TraversalDirection () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(In instance) ;
R visit(Out instance) ;
R visit(Both instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(TraversalDirection instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(In instance) {
return otherwise((instance));
}
default R visit(Out instance) {
return otherwise((instance));
}
default R visit(Both instance) {
return otherwise((instance));
}
}
public static final class In extends hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection implements Serializable {
public In () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof In)) {
return false;
}
In o = (In) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Out extends hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection implements Serializable {
public Out () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Out)) {
return false;
}
Out o = (Out) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Both extends hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection implements Serializable {
public Both () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Both)) {
return false;
}
Both o = (Both) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}