Package io.milvus.grpc
Enum VectorsArray.ArrayCase
- java.lang.Object
-
- java.lang.Enum<VectorsArray.ArrayCase>
-
- io.milvus.grpc.VectorsArray.ArrayCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,Serializable,Comparable<VectorsArray.ArrayCase>
- Enclosing class:
- VectorsArray
public static enum VectorsArray.ArrayCase extends Enum<VectorsArray.ArrayCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARRAY_NOT_SETDATA_ARRAYID_ARRAY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static VectorsArray.ArrayCaseforNumber(int value)intgetNumber()static VectorsArray.ArrayCasevalueOf(int value)Deprecated.static VectorsArray.ArrayCasevalueOf(String name)Returns the enum constant of this type with the specified name.static VectorsArray.ArrayCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID_ARRAY
public static final VectorsArray.ArrayCase ID_ARRAY
-
DATA_ARRAY
public static final VectorsArray.ArrayCase DATA_ARRAY
-
ARRAY_NOT_SET
public static final VectorsArray.ArrayCase ARRAY_NOT_SET
-
-
Method Detail
-
values
public static VectorsArray.ArrayCase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VectorsArray.ArrayCase c : VectorsArray.ArrayCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VectorsArray.ArrayCase valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
valueOf
@Deprecated public static VectorsArray.ArrayCase valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
forNumber
public static VectorsArray.ArrayCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
-