Enum Class EssApplication.Status

java.lang.Object
java.lang.Enum<EssApplication.Status>
com.appliedolap.essbase.EssApplication.Status
All Implemented Interfaces:
Serializable, Comparable<EssApplication.Status>, Constable
Enclosing interface:
EssApplication

public static enum EssApplication.Status extends Enum<EssApplication.Status>
An enumeration for the different application states.
  • Enum Constant Details

    • STOPPED

      public static final EssApplication.Status STOPPED
      Application is in the stopped state.
    • STARTED

      public static final EssApplication.Status STARTED
      Application is in the started state.
    • UNKNOWN

      public static final EssApplication.Status UNKNOWN
      State is unknown, currently unknown whether there are any states beyond stopped and started (such as starting) but this gives us some buffer against unknown states breaking the API.
  • Method Details

    • values

      public static EssApplication.Status[] 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 EssApplication.Status 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
    • parse

      public static EssApplication.Status parse(String statusText)
      Creates a status by parsing the given text. Parsing is case-insensitive. If a status cannot be determined then the UNKNOWN status will be returned.
      Parameters:
      statusText - the status text to parse.
      Returns:
      a status for the text