Enum Class Instruction.BreakpointType

java.lang.Object
java.lang.Enum<Instruction.BreakpointType>
me.topchetoeu.j2s.common.Instruction.BreakpointType
All Implemented Interfaces:
Serializable, Comparable<Instruction.BreakpointType>, Constable
Enclosing class:
Instruction

public static enum Instruction.BreakpointType extends Enum<Instruction.BreakpointType>
  • Enum Constant Details

    • NONE

      public static final Instruction.BreakpointType NONE
      A debugger should never stop at such instruction, unless a breakpoint has been set on it
    • STEP_OVER

      public static final Instruction.BreakpointType STEP_OVER
      Debuggers should pause at instructions marked with this breakpoint type after any step command
    • STEP_IN

      public static final Instruction.BreakpointType STEP_IN
      Debuggers should pause at instructions marked with this breakpoint type only after a step-in command
  • Method Details

    • values

      public static Instruction.BreakpointType[] 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

      public static Instruction.BreakpointType valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • shouldStepIn

      public boolean shouldStepIn()
    • shouldStepOver

      public boolean shouldStepOver()