public enum TranslatorFeature extends java.lang.Enum<TranslatorFeature>
Translator.| Enum Constant and Description |
|---|
CYPHER_EXTENSIONS
Support for custom functions and predicates
provided by the CfoG Gremlin Server plugin.
|
MULTIPLE_LABELS
Support for specifying multiple labels for a vertex
and matching by multiple labels.
|
RETURN_GREMLIN_ELEMENTS
Return Gremlin graph elements (e.g
Vertex, Edge) instead of normalizing elements to a map of
tokens and properties (as by default). |
| Modifier and Type | Method and Description |
|---|---|
static TranslatorFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TranslatorFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TranslatorFeature CYPHER_EXTENSIONS
public static final TranslatorFeature MULTIPLE_LABELS
public static final TranslatorFeature RETURN_GREMLIN_ELEMENTS
Vertex, Edge) instead of normalizing elements to a map of
tokens and properties (as by default).public static TranslatorFeature[] values()
for (TranslatorFeature c : TranslatorFeature.values()) System.out.println(c);
public static TranslatorFeature valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null