public enum HintSeverity extends Enum<HintSeverity>
ERROR
- will show up as error
WARNING
- will show up as warning
CURRENT_LINE_WARNING
- will only show up when the caret is placed in the erroneous element
Enum.EnumDesc<E extends Enum<E>>
Enum Constant and Description |
---|
CURRENT_LINE_WARNING |
ERROR |
WARNING |
Modifier and Type | Method and Description |
---|---|
Severity |
toEditorSeverity() |
static HintSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HintSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HintSeverity ERROR
public static final HintSeverity WARNING
public static final HintSeverity CURRENT_LINE_WARNING
public static HintSeverity[] values()
public static HintSeverity valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic Severity toEditorSeverity()