public enum JsonExpressionLanguageEnum extends Enum<JsonExpressionLanguageEnum> implements NamedEnum
| Enum Constant and Description |
|---|
JSON
The first JSON expression language implementation
|
JSONQL
The JSON QL expression language implementation
|
| Modifier and Type | Method and Description |
|---|---|
static JsonExpressionLanguageEnum |
getByName(String name) |
String |
getName() |
static JsonExpressionLanguageEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JsonExpressionLanguageEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonExpressionLanguageEnum JSON
public static final JsonExpressionLanguageEnum JSONQL
public static JsonExpressionLanguageEnum[] values()
for (JsonExpressionLanguageEnum c : JsonExpressionLanguageEnum.values()) System.out.println(c);
public static JsonExpressionLanguageEnum 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 static JsonExpressionLanguageEnum getByName(String name)
Copyright © 2017. All rights reserved.