Enum Class ConfigurationManager.StartupState
java.lang.Object
java.lang.Enum<ConfigurationManager.StartupState>
com.inductiveautomation.ignition.gateway.config.ConfigurationManager.StartupState
- All Implemented Interfaces:
Serializable,Comparable<ConfigurationManager.StartupState>,Constable
- Enclosing interface:
- ConfigurationManager
public static enum ConfigurationManager.StartupState
extends Enum<ConfigurationManager.StartupState>
Represents the possible state of the gateway at startup.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe gateway starts up with a completely new installation of the gateway.The gateway is starting up normally.The gateway starts up with a restore from a backup.The gateway starts up with a restore from a backup from an older version. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ConfigurationManager.StartupState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NORMAL
The gateway is starting up normally. The default state if none of the other states apply. -
FRESH_INSTALL
The gateway starts up with a completely new installation of the gateway. -
RESTORED
The gateway starts up with a restore from a backup. -
UPGRADE
The gateway starts up with a restore from a backup from an older version.
-
-
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
-