public static enum LocalFallbackEvent.Result extends Enum<LocalFallbackEvent.Result>
Enum Constant and Description |
---|
CANCELLED |
EXCEPTION |
FAIL |
INTERRUPTED |
NOT_RUN |
SUCCESS |
Modifier and Type | Method and Description |
---|---|
static LocalFallbackEvent.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocalFallbackEvent.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocalFallbackEvent.Result SUCCESS
public static final LocalFallbackEvent.Result FAIL
public static final LocalFallbackEvent.Result EXCEPTION
public static final LocalFallbackEvent.Result NOT_RUN
public static final LocalFallbackEvent.Result INTERRUPTED
public static final LocalFallbackEvent.Result CANCELLED
public static LocalFallbackEvent.Result[] values()
for (LocalFallbackEvent.Result c : LocalFallbackEvent.Result.values()) System.out.println(c);
public static LocalFallbackEvent.Result valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null