public enum ExceptionHandlerExceptionType extends Enum<ExceptionHandlerExceptionType>
Enum Constant and Description |
---|
PROCESS
Exception occurred during event processing
|
STAGE
Staging-related exception.
|
UNDEPLOY
Exception occurred upon undeploy
|
Modifier and Type | Method and Description |
---|---|
static ExceptionHandlerExceptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExceptionHandlerExceptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExceptionHandlerExceptionType PROCESS
public static final ExceptionHandlerExceptionType UNDEPLOY
public static final ExceptionHandlerExceptionType STAGE
public static ExceptionHandlerExceptionType[] values()
for (ExceptionHandlerExceptionType c : ExceptionHandlerExceptionType.values()) System.out.println(c);
public static ExceptionHandlerExceptionType 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 © 2005–2021. All rights reserved.