Package me.topchetoeu.j2s.common
Enum Class Instruction.BreakpointType
- All Implemented Interfaces:
Serializable
,Comparable<Instruction.BreakpointType>
,Constable
- Enclosing class:
- Instruction
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA debugger should never stop at such instruction, unless a breakpoint has been set on itDebuggers should pause at instructions marked with this breakpoint type only after a step-in commandDebuggers should pause at instructions marked with this breakpoint type after any step command -
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
static Instruction.BreakpointType
Returns the enum constant of this class with the specified name.static Instruction.BreakpointType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
A debugger should never stop at such instruction, unless a breakpoint has been set on it -
STEP_OVER
Debuggers should pause at instructions marked with this breakpoint type after any step command -
STEP_IN
Debuggers should pause at instructions marked with this breakpoint type only after a step-in command
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
shouldStepIn
public boolean shouldStepIn() -
shouldStepOver
public boolean shouldStepOver()
-