Package com.atlassian.jira.startup.mode
Enum Class StartupMode
- All Implemented Interfaces:
Serializable,Comparable<StartupMode>,Constable
The mode in which JIRA started up. Unlike
InstanceState,
which can change as the instance comes up and is set up or upgraded, this
never changes over the lifetime of the instance.- Since:
- 7.4.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionJIRA was started in installation (setup) mode.JIRA is simply being restarted.JIRA has been started, but it is not possible to know what mode it was started in (for example it has not yet connected to the database)JIRA was started in upgrade mode, i.e. -
Method Summary
Modifier and TypeMethodDescriptionstatic StartupModeReturns the enum constant of this class with the specified name.static StartupMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTALLING
JIRA was started in installation (setup) mode. -
NORMAL
JIRA is simply being restarted. -
UPGRADING
JIRA was started in upgrade mode, i.e. the application version number was ahead of the database build number. -
UNKNOWN
JIRA has been started, but it is not possible to know what mode it was started in (for example it has not yet connected to the database)
-
-
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
-