public enum LaunchCreateType extends java.lang.Enum<LaunchCreateType>
Enum maps to 'objectType' attribute in launch-1.0 extension, represents whether an application is created or a direct registration.
| Enum Constant and Description |
|---|
APPLICATION |
REGISTRATION |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCreateType() |
static LaunchCreateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LaunchCreateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LaunchCreateType REGISTRATION
public static final LaunchCreateType APPLICATION
public static LaunchCreateType[] values()
for (LaunchCreateType c : LaunchCreateType.values()) System.out.println(c);
public static LaunchCreateType 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 getCreateType()