public enum QueryLanguage extends java.lang.Enum<QueryLanguage>
| Enum Constant and Description |
|---|
SparkseeAlgebra
The internal Sparksee Algebra.
|
SparkseeCypher
The Sparksee Cypher Language inspired by the OpenCypher Query Language.
|
| Modifier and Type | Method and Description |
|---|---|
static QueryLanguage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryLanguage SparkseeAlgebra
The internal Sparksee Algebra.
public static final QueryLanguage SparkseeCypher
The Sparksee Cypher Language inspired by the OpenCypher Query Language.
public static QueryLanguage[] values()
for (QueryLanguage c : QueryLanguage.values()) System.out.println(c);
public static QueryLanguage 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