hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues 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 WithOptionsValues implements Serializable {
public static final hydra.core.Name TYPE_NAME = new hydra.core.Name("hydra/ext/org/apache/tinkerpop/gremlin.WithOptionsValues");
public static final hydra.core.Name FIELD_NAME_TOKENS = new hydra.core.Name("tokens");
public static final hydra.core.Name FIELD_NAME_NONE = new hydra.core.Name("none");
public static final hydra.core.Name FIELD_NAME_IDS = new hydra.core.Name("ids");
public static final hydra.core.Name FIELD_NAME_LABELS = new hydra.core.Name("labels");
public static final hydra.core.Name FIELD_NAME_KEYS = new hydra.core.Name("keys");
public static final hydra.core.Name FIELD_NAME_VALUES = new hydra.core.Name("values");
public static final hydra.core.Name FIELD_NAME_ALL = new hydra.core.Name("all");
public static final hydra.core.Name FIELD_NAME_LIST = new hydra.core.Name("list");
public static final hydra.core.Name FIELD_NAME_MAP = new hydra.core.Name("map");
private WithOptionsValues () {
}
public abstract R accept(Visitor visitor) ;
public interface Visitor {
R visit(Tokens instance) ;
R visit(None instance) ;
R visit(Ids instance) ;
R visit(Labels instance) ;
R visit(Keys instance) ;
R visit(Values instance) ;
R visit(All instance) ;
R visit(List instance) ;
R visit(Map instance) ;
}
public interface PartialVisitor extends Visitor {
default R otherwise(WithOptionsValues instance) {
throw new IllegalStateException("Non-exhaustive patterns when matching: " + (instance));
}
default R visit(Tokens instance) {
return otherwise((instance));
}
default R visit(None instance) {
return otherwise((instance));
}
default R visit(Ids instance) {
return otherwise((instance));
}
default R visit(Labels instance) {
return otherwise((instance));
}
default R visit(Keys instance) {
return otherwise((instance));
}
default R visit(Values instance) {
return otherwise((instance));
}
default R visit(All instance) {
return otherwise((instance));
}
default R visit(List instance) {
return otherwise((instance));
}
default R visit(Map instance) {
return otherwise((instance));
}
}
public static final class Tokens extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public Tokens () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Tokens)) {
return false;
}
Tokens o = (Tokens) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class None extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public None () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof None)) {
return false;
}
None o = (None) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Ids extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public Ids () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Ids)) {
return false;
}
Ids o = (Ids) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Labels extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public Labels () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Labels)) {
return false;
}
Labels o = (Labels) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Keys extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public Keys () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Keys)) {
return false;
}
Keys o = (Keys) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Values extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public Values () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Values)) {
return false;
}
Values o = (Values) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class All extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public All () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof All)) {
return false;
}
All o = (All) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class List extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public List () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof List)) {
return false;
}
List o = (List) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
public static final class Map extends hydra.ext.org.apache.tinkerpop.gremlin.WithOptionsValues implements Serializable {
public Map () {
}
@Override
public boolean equals(Object other) {
if (!(other instanceof Map)) {
return false;
}
Map o = (Map) (other);
return true;
}
@Override
public int hashCode() {
return 0;
}
@Override
public R accept(Visitor visitor) {
return visitor.visit(this);
}
}
}