public static enum IDebugExecutor.DebugCommand extends Enum<IDebugExecutor.DebugCommand>
| Enum Constant and Description |
|---|
CONTINUE |
PAUSE |
SKIP_ALL_BREAKPOINTS |
STEPINTO |
STEPOVER |
| Modifier and Type | Method and Description |
|---|---|
static IDebugExecutor.DebugCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IDebugExecutor.DebugCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IDebugExecutor.DebugCommand CONTINUE
public static final IDebugExecutor.DebugCommand PAUSE
public static final IDebugExecutor.DebugCommand STEPOVER
public static final IDebugExecutor.DebugCommand STEPINTO
public static final IDebugExecutor.DebugCommand SKIP_ALL_BREAKPOINTS
public static IDebugExecutor.DebugCommand[] values()
for (IDebugExecutor.DebugCommand c : IDebugExecutor.DebugCommand.values()) System.out.println(c);
public static IDebugExecutor.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 © 2010–2018 Eclipse Foundation. All rights reserved.