public static enum XCScheme.LaunchAction.LaunchStyle extends Enum<XCScheme.LaunchAction.LaunchStyle>
Enum Constant and Description |
---|
AUTO
Starts the process with attached debugger.
|
WAIT
Debugger waits for executable to be launched.
|
Modifier and Type | Method and Description |
---|---|
static XCScheme.LaunchAction.LaunchStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XCScheme.LaunchAction.LaunchStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XCScheme.LaunchAction.LaunchStyle AUTO
public static final XCScheme.LaunchAction.LaunchStyle WAIT
public static XCScheme.LaunchAction.LaunchStyle[] values()
for (XCScheme.LaunchAction.LaunchStyle c : XCScheme.LaunchAction.LaunchStyle.values()) System.out.println(c);
public static XCScheme.LaunchAction.LaunchStyle valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null