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