public static enum UseModeProvider.UseMode extends java.lang.Enum<UseModeProvider.UseMode>
Enum Constant and Description |
---|
ASSISTED_SCRIPT_MODE |
GUI_MODE
Model is run from the user interface.
|
PURE_SCRIPT_MODE |
Modifier and Type | Method and Description |
---|---|
static UseModeProvider.UseMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UseModeProvider.UseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UseModeProvider.UseMode GUI_MODE
public static final UseModeProvider.UseMode ASSISTED_SCRIPT_MODE
public static final UseModeProvider.UseMode PURE_SCRIPT_MODE
public static UseModeProvider.UseMode[] values()
for (UseModeProvider.UseMode c : UseModeProvider.UseMode.values()) System.out.println(c);
public static UseModeProvider.UseMode 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