|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Policy> org.bibalex.daf.entities.phase.Policy
enum Policy
Defines the PhaseActionPerformer policy in case of encountering errore while performing an action.
Enum Constant Summary | |
---|---|
Continue
Instructs the performer to continue even if it encounters any errors. |
|
RaiseError
Instructs the performer to stop if an error is encountered and raise an exception. |
|
StopSilently
Instructs the performer to stop if an error is encountered and don't raise an exception. |
Method Summary | |
---|---|
static Policy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Policy[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Policy Continue
public static final Policy StopSilently
public static final Policy RaiseError
Method Detail |
---|
public static final Policy[] values()
for(Policy c : Policy.values()) System.out.println(c);
public static Policy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |