Package io.milvus.grpc
Enum ValueField.DataCase
- java.lang.Object
-
- java.lang.Enum<ValueField.DataCase>
-
- io.milvus.grpc.ValueField.DataCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,Serializable,Comparable<ValueField.DataCase>
- Enclosing class:
- ValueField
public static enum ValueField.DataCase extends Enum<ValueField.DataCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOL_DATABYTES_DATADATA_NOT_SETDOUBLE_DATAFLOAT_DATAINT_DATALONG_DATASTRING_DATA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ValueField.DataCaseforNumber(int value)intgetNumber()static ValueField.DataCasevalueOf(int value)Deprecated.static ValueField.DataCasevalueOf(String name)Returns the enum constant of this type with the specified name.static ValueField.DataCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOL_DATA
public static final ValueField.DataCase BOOL_DATA
-
INT_DATA
public static final ValueField.DataCase INT_DATA
-
LONG_DATA
public static final ValueField.DataCase LONG_DATA
-
FLOAT_DATA
public static final ValueField.DataCase FLOAT_DATA
-
DOUBLE_DATA
public static final ValueField.DataCase DOUBLE_DATA
-
STRING_DATA
public static final ValueField.DataCase STRING_DATA
-
BYTES_DATA
public static final ValueField.DataCase BYTES_DATA
-
DATA_NOT_SET
public static final ValueField.DataCase DATA_NOT_SET
-
-
Method Detail
-
values
public static ValueField.DataCase[] 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 (ValueField.DataCase c : ValueField.DataCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValueField.DataCase 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 ValueField.DataCase 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 ValueField.DataCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
-