Enum Class PhaseExecutionPoint
- All Implemented Interfaces:
Serializable
,Comparable<PhaseExecutionPoint>
,Constable
Represents where a dynamic phase should be executed within a static phase.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionprefix()
static PhaseExecutionPoint
Returns the enum constant of this class with the specified name.static PhaseExecutionPoint[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BEFORE
-
AT
Execution is the execution of the phase proper. Failure of any#AT
dynamic phase execution will fail the phase. AnyAFTER
phases will still be executed. -
AFTER
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
prefix
-