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