public enum ProblemLevel extends java.lang.Enum<ProblemLevel>
| Modifier and Type | Method and Description |
|---|---|
static ProblemLevel |
fromString(java.lang.String key) |
java.lang.String |
getKey() |
static ProblemLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProblemLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProblemLevel NOTICE
public static final ProblemLevel WARNING
public static final ProblemLevel ERROR
public static ProblemLevel[] values()
for (ProblemLevel c : ProblemLevel.values()) System.out.println(c);
public static ProblemLevel 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 nullpublic static ProblemLevel fromString(java.lang.String key)
public java.lang.String getKey()