public enum LauncherType extends java.lang.Enum<LauncherType>
LauncherSetup.getType()
Enum Constant and Description |
---|
CONSOLE
Represents a console launcher.
|
EXTERNAL
Represents an external launcher.
|
GUI
Represents a GUI launcher.
|
INSTALLER_APPLICATION
Represents a custom installer application.
|
SERVICE
Represents a service launcher.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static LauncherType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LauncherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LauncherType CONSOLE
public static final LauncherType GUI
public static final LauncherType SERVICE
public static final LauncherType EXTERNAL
public static final LauncherType INSTALLER_APPLICATION
public static LauncherType[] values()
for (LauncherType c : LauncherType.values()) System.out.println(c);
public static LauncherType 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 java.lang.String toString()
toString
in class java.lang.Enum<LauncherType>