Package org.eclipse.lsp4j.debug
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` requeststatic java.lang.String
EXCEPTION
In exception breakpoints applied in the `ExceptionFilterOptions`static java.lang.String
INSTRUCTION
In `InstructionBreakpoint`sstatic java.lang.String
SOURCE
In `SourceBreakpoint`s
-
-
-
Field Detail
-
SOURCE
static final java.lang.String SOURCE
In `SourceBreakpoint`s- See Also:
- Constant Field Values
-
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
-
-