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