public enum TranslatorFeature extends Enum<TranslatorFeature>
Translator
.Enum Constant and Description |
---|
CYPHER_EXTENSIONS
Support for custom functions and predicates
provided by the CfoG Gremlin Server plugin.
|
EXPERIMENTAL_GREMLIN_FUNCTION
Enables experimental `gremlin` Cypher function that allows including Gremlin steps in translated query
|
MULTIPLE_LABELS
Support for specifying multiple labels for a vertex
and matching by multiple labels.
|
RETURN_GREMLIN_ELEMENTS
|
Modifier and Type | Method and Description |
---|---|
static TranslatorFeature |
valueOf(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
public static final TranslatorFeature EXPERIMENTAL_GREMLIN_FUNCTION
public static TranslatorFeature[] values()
for (TranslatorFeature c : TranslatorFeature.values()) System.out.println(c);
public static TranslatorFeature valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null