Enum Class RegionState

java.lang.Object
java.lang.Enum<RegionState>
io.dingodb.sdk.service.entity.common.RegionState
All Implemented Interfaces:
Numeric, Serializable, Comparable<RegionState>, Constable

public enum RegionState extends Enum<RegionState> implements Numeric
  • Enum Constant Details

    • UNRECOGNIZED

      public static final RegionState UNRECOGNIZED
    • REGION_NONE

      public static final RegionState REGION_NONE
    • REGION_NEW

      public static final RegionState REGION_NEW
    • REGION_NORMAL

      public static final RegionState REGION_NORMAL
    • REGION_EXPAND

      public static final RegionState REGION_EXPAND
    • REGION_EXPANDING

      public static final RegionState REGION_EXPANDING
    • REGION_EXPANDED

      public static final RegionState REGION_EXPANDED
    • REGION_SHRINK

      public static final RegionState REGION_SHRINK
    • REGION_SHIRINKING

      public static final RegionState REGION_SHIRINKING
    • REGION_SHRANK

      public static final RegionState REGION_SHRANK
    • REGION_DELETE

      public static final RegionState REGION_DELETE
    • REGION_DELETING

      public static final RegionState REGION_DELETING
    • REGION_DELETED

      public static final RegionState REGION_DELETED
    • REGION_SPLIT

      public static final RegionState REGION_SPLIT
    • REGION_SPLITTING

      public static final RegionState REGION_SPLITTING
    • REGION_SPLITED

      public static final RegionState REGION_SPLITED
    • REGION_MERGE

      public static final RegionState REGION_MERGE
    • REGION_MERGING

      public static final RegionState REGION_MERGING
    • REGION_MERGED

      public static final RegionState REGION_MERGED
    • REGION_ILLEGAL

      public static final RegionState REGION_ILLEGAL
    • REGION_STANDBY

      public static final RegionState REGION_STANDBY
    • REGION_TOMBSTONE

      public static final RegionState REGION_TOMBSTONE
  • Field Details

    • number

      public final Integer number
  • Method Details

    • values

      public static RegionState[] 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 RegionState 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
    • number

      public int number()
      Specified by:
      number in interface Numeric
    • forNumber

      public static RegionState forNumber(int number)