public enum SteppingGranularity extends java.lang.Enum<SteppingGranularity>
Enum Constant and Description |
---|
INSTRUCTION
The step should allow one instruction to execute (e.g.
|
LINE
The step should allow the program to run until the current source line has executed.
|
STATEMENT
The step should allow the program to run until the current statement has finished executing.
|
Modifier and Type | Method and Description |
---|---|
static SteppingGranularity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SteppingGranularity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SteppingGranularity STATEMENT
public static final SteppingGranularity LINE
public static final SteppingGranularity INSTRUCTION
public static SteppingGranularity[] values()
for (SteppingGranularity c : SteppingGranularity.values()) System.out.println(c);
public static SteppingGranularity 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