hydra.ext.org.apache.tinkerpop.gremlin.ByArgs 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 ByArgs implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/apache/tinkerpop/gremlin.ByArgs");
public static final hydra.core.Name FIELD_NAME_ORDER = new hydra.core.Name("order");
public static final hydra.core.Name FIELD_NAME_TOKEN = new hydra.core.Name("token");
public static final hydra.core.Name FIELD_NAME_OTHER = new hydra.core.Name("other");
private ByArgs () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Order instance) ;
R visit(Token instance) ;
R visit(Other instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(ByArgs instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Order instance) {
return otherwise((instance));
}
default R visit(Token instance) {
return otherwise((instance));
}
default R visit(Other instance) {
return otherwise((instance));
}
}
public static final class Order extends hydra.ext.org.apache.tinkerpop.gremlin.ByArgs implements Serializable {
public final hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrderArgument value;
public Order (hydra.ext.org.apache.tinkerpop.gremlin.TraversalOrderArgument value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Order)) {
return false;
}
Order o = (Order) (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 Token extends hydra.ext.org.apache.tinkerpop.gremlin.ByArgs implements Serializable {
public final hydra.ext.org.apache.tinkerpop.gremlin.TraversalTokenArgument value;
public Token (hydra.ext.org.apache.tinkerpop.gremlin.TraversalTokenArgument value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Token)) {
return false;
}
Token o = (Token) (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 Other extends hydra.ext.org.apache.tinkerpop.gremlin.ByArgs implements Serializable {
public final hydra.ext.org.apache.tinkerpop.gremlin.ByOtherArgs value;
public Other (hydra.ext.org.apache.tinkerpop.gremlin.ByOtherArgs value) {
java.util.Objects.requireNonNull((value));
this.value = value;
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Other)) {
return false;
}
Other o = (Other) (other);
return value.equals(o.value);
}
@Override
public int hashCode() {
return 2 * value.hashCode();
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}