Enum Class ActionTypes
- All Implemented Interfaces:
ActionType,Serializable,Comparable<ActionTypes>,Constable
The default action types.
- Author:
- Holger Eichelberger, SSE
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ActionTypesReturns the enum constant of this class with the specified name.static ActionTypes[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ADDED
Component was added and occurred. -
CHANGED
Component was changed (may be refined). -
REMOVED
Component was removed and disappeared. -
PROCESS
Something is being processed. Taskid shall be set. -
RESULT
Result of an asynchronous operation. Taskid shall be set. -
ERROR
Failure of an asynchronous operation. Taskid shall be set.
-
-
Constructor Details
-
ActionTypes
private ActionTypes()
-
-
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
-