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