Enum Class UpdateManager.InstanceProperties
java.lang.Object
java.lang.Enum<UpdateManager.InstanceProperties>
de.aristaflow.adept2.core.updatemanager.UpdateManager.InstanceProperties
- All Implemented Interfaces:
Serializable,Comparable<UpdateManager.InstanceProperties>,java.lang.constant.Constable
- Enclosing interface:
- UpdateManager
These constants are needed with subprocesses to signal the activation or
termination of a subprocess instance.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionConstant used for events to signal that an instance has been activated.Constant used for events to signal that an instance has failed.Constant used for events to signal that an instance has been finished.Constant used for events to signal that an instance has been resumedConstant used for events to signal that an instance has been suspended -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static UpdateManager.InstanceProperties[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTANCE_ACTIVATED
Constant used for events to signal that an instance has been activated. -
INSTANCE_SUSPENDED
Constant used for events to signal that an instance has been suspended -
INSTANCE_RESUMED
Constant used for events to signal that an instance has been resumed -
INSTANCE_FINISHED
Constant used for events to signal that an instance has been finished. -
INSTANCE_FAILED
Constant used for events to signal that an instance has failed.
-
-
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
-