public static enum PageErrorHandler.Status extends Enum<PageErrorHandler.Status>
HANDLED_TO_STOP
: Value to return to stop the processing.NOT_HANDLED
: Value to return to continue the processing, indicating no handling happened.HANDLED_BUT_CONTINUE
: Value to return to continue the processing, indicating some handling happened.Enum Constant and Description |
---|
HANDLED_BUT_CONTINUE |
HANDLED_TO_STOP |
NOT_HANDLED |
Modifier and Type | Method and Description |
---|---|
static PageErrorHandler.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageErrorHandler.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageErrorHandler.Status HANDLED_TO_STOP
public static final PageErrorHandler.Status NOT_HANDLED
public static final PageErrorHandler.Status HANDLED_BUT_CONTINUE
public static PageErrorHandler.Status[] values()
for (PageErrorHandler.Status c : PageErrorHandler.Status.values()) System.out.println(c);
public static PageErrorHandler.Status 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 © 2008–2017 Hippo B.V. (http://www.onehippo.com). All rights reserved.