public enum EventErrorCodes extends Enum<EventErrorCodes> implements org.seedstack.seed.ErrorCode
| Enum Constant and Description |
|---|
CYCLE_WAS_DETECTED_IN_FIRED_EVENT |
HANDLER_EXECUTION_FAILED |
INTERCEPTED_CLASS_SHOULD_BE_A_REPOSITORY |
| Modifier and Type | Method and Description |
|---|---|
static EventErrorCodes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventErrorCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventErrorCodes CYCLE_WAS_DETECTED_IN_FIRED_EVENT
public static final EventErrorCodes INTERCEPTED_CLASS_SHOULD_BE_A_REPOSITORY
public static final EventErrorCodes HANDLER_EXECUTION_FAILED
public static EventErrorCodes[] values()
for (EventErrorCodes c : EventErrorCodes.values()) System.out.println(c);
public static EventErrorCodes 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 nullCopyright © 2013-2016–2016 SeedStack. All rights reserved.