Package io.milvus.grpc
Interface ValueFieldOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ValueField,ValueField.Builder
public interface ValueFieldOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetBoolData()bool bool_data = 1;com.google.protobuf.ByteStringgetBytesData()bytes bytes_data = 7;ValueField.DataCasegetDataCase()doublegetDoubleData()double double_data = 5;floatgetFloatData()float float_data = 4;intgetIntData()int32 int_data = 2;longgetLongData()int64 long_data = 3;StringgetStringData()string string_data = 6;com.google.protobuf.ByteStringgetStringDataBytes()string string_data = 6;booleanhasBoolData()bool bool_data = 1;booleanhasBytesData()bytes bytes_data = 7;booleanhasDoubleData()double double_data = 5;booleanhasFloatData()float float_data = 4;booleanhasIntData()int32 int_data = 2;booleanhasLongData()int64 long_data = 3;booleanhasStringData()string string_data = 6;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasBoolData
boolean hasBoolData()
bool bool_data = 1;- Returns:
- Whether the boolData field is set.
-
getBoolData
boolean getBoolData()
bool bool_data = 1;- Returns:
- The boolData.
-
hasIntData
boolean hasIntData()
int32 int_data = 2;- Returns:
- Whether the intData field is set.
-
getIntData
int getIntData()
int32 int_data = 2;- Returns:
- The intData.
-
hasLongData
boolean hasLongData()
int64 long_data = 3;- Returns:
- Whether the longData field is set.
-
getLongData
long getLongData()
int64 long_data = 3;- Returns:
- The longData.
-
hasFloatData
boolean hasFloatData()
float float_data = 4;- Returns:
- Whether the floatData field is set.
-
getFloatData
float getFloatData()
float float_data = 4;- Returns:
- The floatData.
-
hasDoubleData
boolean hasDoubleData()
double double_data = 5;- Returns:
- Whether the doubleData field is set.
-
getDoubleData
double getDoubleData()
double double_data = 5;- Returns:
- The doubleData.
-
hasStringData
boolean hasStringData()
string string_data = 6;- Returns:
- Whether the stringData field is set.
-
getStringData
String getStringData()
string string_data = 6;- Returns:
- The stringData.
-
getStringDataBytes
com.google.protobuf.ByteString getStringDataBytes()
string string_data = 6;- Returns:
- The bytes for stringData.
-
hasBytesData
boolean hasBytesData()
bytes bytes_data = 7;- Returns:
- Whether the bytesData field is set.
-
getBytesData
com.google.protobuf.ByteString getBytesData()
bytes bytes_data = 7;- Returns:
- The bytesData.
-
getDataCase
ValueField.DataCase getDataCase()
-
-