Enum Class IndexPlanState

java.lang.Object
java.lang.Enum<IndexPlanState>
dev.getelements.elements.sdk.model.index.IndexPlanState
All Implemented Interfaces:
Serializable, Comparable<IndexPlanState>, Constable

public enum IndexPlanState extends Enum<IndexPlanState>
  • Enum Constant Details

    • READY

      public static final IndexPlanState READY
      Indicates the plan is ready to be applied.
    • PROCESSING

      public static final IndexPlanState PROCESSING
      Indicates that the plan execution is in-progress.
    • APPLIED

      public static final IndexPlanState APPLIED
      Indicates that the operation was successful and the plan fully applied.
  • Method Details

    • values

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