Enum Constant and Description |
---|
ERROR |
FAIL |
FATAL |
INFO |
PASS |
SKIP |
UNKNOWN |
WARNING |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static LogStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogStatus PASS
public static final LogStatus FAIL
public static final LogStatus FATAL
public static final LogStatus ERROR
public static final LogStatus WARNING
public static final LogStatus INFO
public static final LogStatus SKIP
public static final LogStatus UNKNOWN
public static LogStatus[] values()
for (LogStatus c : LogStatus.values()) System.out.println(c);
public static LogStatus 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 java.lang.String toString()
toString
in class java.lang.Enum<LogStatus>