Enum Class DataType

java.lang.Object
java.lang.Enum<DataType>
com.walker.support.milvus.DataType
所有已实现的接口:
Serializable, Comparable<DataType>, Constable

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

    • Float

      public static final DataType Float
    • Double

      public static final DataType Double
    • Integer

      public static final DataType Integer
    • Long

      public static final DataType Long
    • String

      public static final DataType String
    • FloatVector

      public static final DataType FloatVector
    • BinaryVector

      public static final DataType BinaryVector
    • None

      public static final DataType None
  • 字段详细资料

    • None_VALUE

      public static final int None_VALUE
      另请参阅:
    • Int32_VALUE

      public static final int Int32_VALUE
      另请参阅:
    • Int64_VALUE

      public static final int Int64_VALUE
      另请参阅:
    • Float_VALUE

      public static final int Float_VALUE
      另请参阅:
    • Double_VALUE

      public static final int Double_VALUE
      另请参阅:
    • String_VALUE

      public static final int String_VALUE
      另请参阅:
    • BinaryVector_VALUE

      public static final int BinaryVector_VALUE
      另请参阅:
    • FloatVector_VALUE

      public static final int FloatVector_VALUE
      另请参阅:
  • 方法详细资料

    • values

      public static DataType[] 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 DataType 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 - 如果参数为空值
    • getIndex

      public int getIndex()
    • getType

      public static final DataType getType(int index)