hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirectionArgument 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 TraversalDirectionArgument implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/apache/tinkerpop/gremlin.TraversalDirectionArgument");
public static final hydra.core.Name FIELD_NAME_VALUE = new hydra.core.Name("value");
public static final hydra.core.Name FIELD_NAME_VARIABLE = new hydra.core.Name("variable");
private TraversalDirectionArgument () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Value instance) ;
R visit(Variable instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(TraversalDirectionArgument instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Value instance) {
return otherwise((instance));
}
default R visit(Variable instance) {
return otherwise((instance));
}
}
public static final class Value extends hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirectionArgument implements Serializable {
public final hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection value;
public Value (hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirection value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Value)) {
return false;
}
Value o = (Value) (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 Variable extends hydra.ext.org.apache.tinkerpop.gremlin.TraversalDirectionArgument implements Serializable {
public final hydra.ext.org.apache.tinkerpop.gremlin.Identifier value;
public Variable (hydra.ext.org.apache.tinkerpop.gremlin.Identifier value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Variable)) {
return false;
}
Variable o = (Variable) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}