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 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()
for (HintSeverity c : HintSeverity.values()) System.out.println(c);
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()
Built on June 20 2013. | Portions Copyright 1997-2013 Oracle. All rights reserved.