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