Enum Class Index.Status

java.lang.Object
java.lang.Enum<Index.Status>
com.terracottatech.store.indexing.Index.Status
All Implemented Interfaces:
Serializable, Comparable<Index.Status>, Constable
Enclosing interface:
Index<T extends Comparable<T>>

public static enum Index.Status extends Enum<Index.Status>
Status of an index.
  • Enum Constant Details

    • BROKEN

      public static final Index.Status BROKEN
      In a multi-stripe configuration, at least one (but not all) stripes do not have the index defined.
    • DEAD

      public static final Index.Status DEAD
      The state of a no-longer-extant index.
    • POTENTIAL

      public static final Index.Status POTENTIAL
      The state of a defined but not yet created index.
    • INITALIZING

      public static final Index.Status INITALIZING
      The state of an created, but not yet fully populated index.
    • LIVE

      public static final Index.Status LIVE
      The state of a live and usable index.
  • Method Details

    • values

      public static Index.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 Index.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