public static enum DebugContext.StepAction extends java.lang.Enum<DebugContext.StepAction>
Enum Constant and Description |
---|
CONTINUE
Resume the JavaScript execution.
|
IN
Step into the current statement.
|
OUT
Step out of the current function.
|
OVER
Step over the current statement.
|
Modifier and Type | Method and Description |
---|---|
static DebugContext.StepAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DebugContext.StepAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DebugContext.StepAction CONTINUE
public static final DebugContext.StepAction IN
public static final DebugContext.StepAction OVER
public static final DebugContext.StepAction OUT
public static DebugContext.StepAction[] values()
for (DebugContext.StepAction c : DebugContext.StepAction.values()) System.out.println(c);
public static DebugContext.StepAction 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 nullCopyright (c) IBM Corp. and others 2000, 2016. All Rights Reserved.