public enum ScriptLanguage extends Enum<ScriptLanguage>
| Enum Constant and Description |
|---|
EXPRESSION |
GROOVY |
JAVASCRIPT |
MUSTACHE |
MVEL |
PYTHON |
| Modifier and Type | Field and Description |
|---|---|
String |
pathParameterName |
| Modifier and Type | Method and Description |
|---|---|
static ScriptLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScriptLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptLanguage GROOVY
public static final ScriptLanguage EXPRESSION
public static final ScriptLanguage MUSTACHE
public static final ScriptLanguage MVEL
public static final ScriptLanguage JAVASCRIPT
public static final ScriptLanguage PYTHON
public final String pathParameterName
public static ScriptLanguage[] values()
for (ScriptLanguage c : ScriptLanguage.values()) System.out.println(c);
public static ScriptLanguage 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 nullCopyright © 2017. All rights reserved.