Enum Class DiskANNState

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

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

    • UNRECOGNIZED

      public static final DiskANNState UNRECOGNIZED
    • DISKANN_INITIALIZED

      public static final DiskANNState DISKANN_INITIALIZED
    • DISKANN_BUILDING

      public static final DiskANNState DISKANN_BUILDING
    • DISKANN_BUILDED

      public static final DiskANNState DISKANN_BUILDED
    • DISKANN_BUILD_FAILED

      public static final DiskANNState DISKANN_BUILD_FAILED
    • DISKANN_LOADING

      public static final DiskANNState DISKANN_LOADING
    • DISKANN_LOADED

      public static final DiskANNState DISKANN_LOADED
    • DISKANN_LOAD_FAILED

      public static final DiskANNState DISKANN_LOAD_FAILED
    • DISKANN_NODATA

      public static final DiskANNState DISKANN_NODATA
  • Field Details

    • number

      public final Integer number
  • Method Details

    • values

      public static DiskANNState[] 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 DiskANNState 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 DiskANNState forNumber(int number)