Enum Class FieldType

java.lang.Object
java.lang.Enum<FieldType>
com.baidu.mochow.model.enums.FieldType
所有已实现的接口:
Serializable, Comparable<FieldType>, java.lang.constant.Constable

public enum FieldType extends Enum<FieldType>
  • 枚举常量详细资料

    • BOOL

      public static final FieldType BOOL
    • INT8

      public static final FieldType INT8
    • UINT8

      public static final FieldType UINT8
    • INT16

      public static final FieldType INT16
    • UINT16

      public static final FieldType UINT16
    • INT32

      public static final FieldType INT32
    • UINT32

      public static final FieldType UINT32
    • INT64

      public static final FieldType INT64
    • UINT64

      public static final FieldType UINT64
    • FLOAT

      public static final FieldType FLOAT
    • DOUBLE

      public static final FieldType DOUBLE
    • DATE

      public static final FieldType DATE
    • DATETIME

      public static final FieldType DATETIME
    • TIMESTAMP

      public static final FieldType TIMESTAMP
    • STRING

      public static final FieldType STRING
    • BINARY

      public static final FieldType BINARY
    • UUID

      public static final FieldType UUID
    • TEXT

      public static final FieldType TEXT
    • TEXT_GBK

      public static final FieldType TEXT_GBK
    • TEXT_GB18030

      public static final FieldType TEXT_GB18030
    • ARRAY

      public static final FieldType ARRAY
    • JSON

      public static final FieldType JSON
    • FLOAT_VECTOR

      public static final FieldType FLOAT_VECTOR
    • BINARY_VECTOR

      public static final FieldType BINARY_VECTOR
    • SPARSE_FLOAT_VECTOR

      public static final FieldType SPARSE_FLOAT_VECTOR
  • 方法详细资料

    • values

      public static FieldType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FieldType 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getValue

      public String getValue()