public enum EExecType extends Enum<EExecType>
Enum Constant and Description |
---|
exec_string_cmd |
expr |
module |
module_with_params |
stmt |
unknown |
Modifier and Type | Method and Description |
---|---|
static EExecType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EExecType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EExecType module_with_params
public static final EExecType exec_string_cmd
public static EExecType[] values()
for (EExecType c : EExecType.values()) System.out.println(c);
public static EExecType 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 null