public static enum AbstractIndex.QueryLanguage extends Enum<AbstractIndex.QueryLanguage>
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AbstractIndex.QueryLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractIndex.QueryLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractIndex.QueryLanguage JSON
public static final AbstractIndex.QueryLanguage N1QL
public static AbstractIndex.QueryLanguage[] values()
for (AbstractIndex.QueryLanguage c : AbstractIndex.QueryLanguage.values()) System.out.println(c);
public static AbstractIndex.QueryLanguage 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 nullpublic int getValue()