CodeActionKind
Description:
public enum CodeActionKind
The kind of a code action.
Kinds are a hierarchical list of identifiers separated by `.`, e.g. `"refactor.extract.function"`.
The set of kinds is open and client needs to announce the kinds it supports to the server during initialization.
A set of predefined code action kinds
Content:
Enum values:
- QUICK_FIX - Base kind for quickfix
actions: 'quickfix'
- REFACTOR - Base kind for refactoring
actions: 'refactor'
- REFACTOR_EXTRACT - Base kind
for refactoring extraction actions: 'refactor.extract'
- REFACTOR_INLINE - Base kind for
refactoring inline actions: 'refactor.inline'
- REFACTOR_REWRITE - Base kind
for refactoring rewrite actions: 'refactor.rewrite'
- SOURCE - Base kind for source actions:
`source`
- SOURCE_ORGANIZE_IMPORTS -
Base kind for an organize imports source action: `source.organizeImports`
- UNKNOWN
Methods: