Enum Class TaskState
- All Implemented Interfaces:
Serializable,Comparable<TaskState>,java.lang.constant.Constable
Enumeration class that is used to indicate the different states a component
can be in during runtime.
- Author:
- Markus Lauer
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe application is waiting for resources becoming available.Application is busy.Application is terminated.Application is busy.The application is running, accepts requests and is ready for new tasks.An user input is awaited at the moment -
Method Summary
-
Enum Constant Details
-
RUNNING
The application is running, accepts requests and is ready for new tasks. -
BLOCKED
The application is waiting for resources becoming available. -
WAITING_FOR_INTERACTION
An user input is awaited at the moment -
FINISHED
Application is terminated. -
CALCULATING
Application is busy. Interruption should be avoided. -
NON_INTERRUPTIBLE
Application is busy. It must not be interrupted.
-
-
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
-