public static enum CheckReport.ResultType extends java.lang.Enum<CheckReport.ResultType>
Note: The order of the declaration of theses constants is important: the higher the ordinal, the worse the item is considered.
| Enum Constant and Description |
|---|
FAILURE
A failure.
|
INFO
An informational entry.
|
OK
OK statement.
|
WARNING
A warning entry.
|
| Modifier and Type | Method and Description |
|---|---|
static CheckReport.ResultType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckReport.ResultType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckReport.ResultType OK
public static final CheckReport.ResultType INFO
public static final CheckReport.ResultType WARNING
public static final CheckReport.ResultType FAILURE
public static CheckReport.ResultType[] values()
for (CheckReport.ResultType c : CheckReport.ResultType.values()) System.out.println(c);
public static CheckReport.ResultType 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