public enum ProblemSeverity extends java.lang.Enum<ProblemSeverity>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
FATAL |
INFO |
OFF |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static ProblemSeverity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProblemSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProblemSeverity OFF
public static final ProblemSeverity DEBUG
public static final ProblemSeverity INFO
public static final ProblemSeverity WARNING
public static final ProblemSeverity ERROR
public static final ProblemSeverity FATAL
public static ProblemSeverity[] values()
for (ProblemSeverity c : ProblemSeverity.values()) System.out.println(c);
public static ProblemSeverity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null