Interface BreakpointModeApplicability


  • public interface BreakpointModeApplicability
    Describes one or more type of breakpoint a `BreakpointMode` applies to. This is a non-exhaustive enumeration and may expand as future breakpoint types are added.

    Since 1.65

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String DATA
      In data breakpoints requested in the `DataBreakpointInfo` request
      static java.lang.String EXCEPTION
      In exception breakpoints applied in the `ExceptionFilterOptions`
      static java.lang.String INSTRUCTION
      In `InstructionBreakpoint`s
      static java.lang.String SOURCE
      In `SourceBreakpoint`s
    • Field Detail

      • EXCEPTION

        static final java.lang.String EXCEPTION
        In exception breakpoints applied in the `ExceptionFilterOptions`
        See Also:
        Constant Field Values
      • DATA

        static final java.lang.String DATA
        In data breakpoints requested in the `DataBreakpointInfo` request
        See Also:
        Constant Field Values
      • INSTRUCTION

        static final java.lang.String INSTRUCTION
        In `InstructionBreakpoint`s
        See Also:
        Constant Field Values