public enum ExpressionSourceType extends java.lang.Enum<ExpressionSourceType>
| Enum Constant and Description |
|---|
ENVIRONMENT |
GLOBAL |
LOCAL |
NONE |
SYSTEM |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionSourceType ENVIRONMENT
public static final ExpressionSourceType LOCAL
public static final ExpressionSourceType GLOBAL
public static final ExpressionSourceType SYSTEM
public static final ExpressionSourceType NONE
public static ExpressionSourceType[] values()
for (ExpressionSourceType c : ExpressionSourceType.values()) System.out.println(c);
public static ExpressionSourceType 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