Enum Class ShutdownReason
java.lang.Object
java.lang.Enum<ShutdownReason>
com.inductiveautomation.ignition.gateway.tags.evaluation.ShutdownReason
- All Implemented Interfaces:
Serializable
,Comparable<ShutdownReason>
,Constable
When objects are uninitialized, it could be due to a normal shutdown, or to something else-
like the item being deleted. This can have an impact
on the underlying system.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionActor shutting down triggered byattemptConfiguration
Tag was deleted by the userSome issue was found with the tag configuration, and the tag is invalidAn expected situation such as an invalid tag becoming validTag was restarted -
Method Summary
Modifier and TypeMethodDescriptionstatic ShutdownReason
Returns the enum constant of this class with the specified name.static ShutdownReason[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Normal
An expected situation such as an invalid tag becoming valid -
Invalid
Some issue was found with the tag configuration, and the tag is invalid -
Deleted
Tag was deleted by the user -
Restart
Tag was restarted -
AttemptConfiguration
Actor shutting down triggered byattemptConfiguration
-
-
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
-