public enum DebugCommand extends Enum<DebugCommand>
| Enum Constant and Description |
|---|
RESUME |
STEP_IN |
STEP_OUT |
STEP_OUT_INTMDT |
STEP_OVER |
STEP_OVER_INTMDT |
STOP |
| Modifier and Type | Method and Description |
|---|---|
static DebugCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DebugCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugCommand STEP_IN
public static final DebugCommand STEP_OVER
public static final DebugCommand STEP_OVER_INTMDT
public static final DebugCommand STEP_OUT
public static final DebugCommand STEP_OUT_INTMDT
public static final DebugCommand RESUME
public static final DebugCommand STOP
public static DebugCommand[] values()
for (DebugCommand c : DebugCommand.values()) System.out.println(c);
public static DebugCommand 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 nullCopyright © 2018 WSO2. All rights reserved.