public enum ProcessEventArgumentsStartMethod extends java.lang.Enum<ProcessEventArgumentsStartMethod>
| Enum Constant and Description |
|---|
ATTACH
Debugger attached to an existing process.
|
ATTACH_FOR_SUSPENDED_LAUNCH
A project launcher component has launched a new process in a suspended state and then asked the debugger to
attach.
|
LAUNCH
Process was launched under the debugger.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessEventArgumentsStartMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessEventArgumentsStartMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessEventArgumentsStartMethod LAUNCH
public static final ProcessEventArgumentsStartMethod ATTACH
public static final ProcessEventArgumentsStartMethod ATTACH_FOR_SUSPENDED_LAUNCH
public static ProcessEventArgumentsStartMethod[] values()
for (ProcessEventArgumentsStartMethod c : ProcessEventArgumentsStartMethod.values()) System.out.println(c);
public static ProcessEventArgumentsStartMethod 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 null