public static enum ErrorInformation.ErrorAction extends Enum<ErrorInformation.ErrorAction>
| Enum Constant and Description |
|---|
GO_TO_NEXT_LOWER_LEVEL_AND_STOP
Tells the RunLevelController to halt progress
in the level and proceed to the next lowest
level and stop the proceeding at that level.
|
IGNORE
Tells the RunLevelController to disregard
the error and continue its progress as if
the error never happened.
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorInformation.ErrorAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorInformation.ErrorAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorInformation.ErrorAction GO_TO_NEXT_LOWER_LEVEL_AND_STOP
RunLevelFuturepublic static final ErrorInformation.ErrorAction IGNORE
RunLevelFuturepublic static ErrorInformation.ErrorAction[] values()
for (ErrorInformation.ErrorAction c : ErrorInformation.ErrorAction.values()) System.out.println(c);
public static ErrorInformation.ErrorAction 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 © 2009-2015 Oracle Corporation. All Rights Reserved.