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