public static enum ProcessingExceptionHandler.ProcessingHandlerResponse extends Enum<ProcessingExceptionHandler.ProcessingHandlerResponse>
Modifier and Type | Field and Description |
---|---|
int |
id
the permanent and immutable id of processing exception response
|
String |
name
the permanent and immutable name of processing exception response
|
Modifier and Type | Method and Description |
---|---|
static ProcessingExceptionHandler.ProcessingHandlerResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingExceptionHandler.ProcessingHandlerResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingExceptionHandler.ProcessingHandlerResponse CONTINUE
public static final ProcessingExceptionHandler.ProcessingHandlerResponse FAIL
public final String name
public final int id
public static ProcessingExceptionHandler.ProcessingHandlerResponse[] values()
for (ProcessingExceptionHandler.ProcessingHandlerResponse c : ProcessingExceptionHandler.ProcessingHandlerResponse.values()) System.out.println(c);
public static ProcessingExceptionHandler.ProcessingHandlerResponse 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