Enum Class StartupMode

java.lang.Object
java.lang.Enum<StartupMode>
com.atlassian.jira.startup.mode.StartupMode
All Implemented Interfaces:
Serializable, Comparable<StartupMode>, Constable

public enum StartupMode extends Enum<StartupMode>
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
  • Enum Constant Details

    • INSTALLING

      public static final StartupMode INSTALLING
      JIRA was started in installation (setup) mode.
    • NORMAL

      public static final StartupMode NORMAL
      JIRA is simply being restarted.
    • UPGRADING

      public static final StartupMode UPGRADING
      JIRA was started in upgrade mode, i.e. the application version number was ahead of the database build number.
    • UNKNOWN

      public static final StartupMode 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

      public static StartupMode[] 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

      public static StartupMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null