- All Implemented Interfaces:
Serializable,Comparable<ActionType>,Constable
Enumeration of action types that can be performed on artifacts in a step.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionComplete the action.Complete and repeat.Leave the artifact as is.Move to the next step.Remove the artifact.Repeat the action on the artifact.Review the artifact.Rework the artifact.Store the artifact.Unknown action type. -
Method Summary
Modifier and TypeMethodDescriptionstatic ActionTypeConverts a string value to an ActionType.value()Gets the string value.static ActionTypeReturns the enum constant of this class with the specified name.static ActionType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LEAVE
Leave the artifact as is. -
REPEAT
Repeat the action on the artifact. -
REMOVE
Remove the artifact. -
REVIEW
Review the artifact. -
COMPLETE
Complete the action. -
STORE
Store the artifact. -
NEXTSTEP
Move to the next step. -
REWORK
Rework the artifact. -
COMPLETE_REPEAT
Complete and repeat. -
UNKNOWN
Unknown action type.
-
-
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
-
value
Gets the string value.- Returns:
- The string value.
-
fromValue
Converts a string value to an ActionType.- Parameters:
v- The string value.- Returns:
- The corresponding ActionType.
- Throws:
IllegalArgumentException- if the value doesn't match any action type.
-