public enum ExpressionLanguage extends Enum<ExpressionLanguage>
Enum Constant and Description |
---|
LSPS
LSPS expression language.
|
S_FEEL
S-FEEL expression language.
|
Modifier and Type | Method and Description |
---|---|
static ExpressionLanguage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionLanguage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionLanguage LSPS
public static final ExpressionLanguage S_FEEL
public static ExpressionLanguage[] values()
for (ExpressionLanguage c : ExpressionLanguage.values()) System.out.println(c);
public static ExpressionLanguage 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 © 2007-2020 Whitestein Technologies. All Rights Reserved.