Enum Class ReindexStatus

java.lang.Object
java.lang.Enum<ReindexStatus>
com.atlassian.jira.index.request.ReindexStatus
All Implemented Interfaces:
Serializable, Comparable<ReindexStatus>, Constable

@PublicApi public enum ReindexStatus extends Enum<ReindexStatus>
Status for a reindex operation request.
Since:
6.4
  • Enum Constant Details

    • PENDING

      public static final ReindexStatus PENDING
      Not started yet.
    • ACTIVE

      public static final ReindexStatus ACTIVE
      A reindex task is processing the request as part of a group, and this request is waiting to be executed.
    • RUNNING

      public static final ReindexStatus RUNNING
      Reindex is being performed.
    • FAILED

      public static final ReindexStatus FAILED
      Reindex was attempted and failed.
    • COMPLETE

      public static final ReindexStatus COMPLETE
      Completed successfully.
  • Method Details

    • values

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