Package io.milvus.grpc
Interface RowRecordOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RowRecord,RowRecord.Builder
public interface RowRecordOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetBinaryData()binary vector datafloatgetFloatData(int index)float vector dataintgetFloatDataCount()float vector dataList<Float>getFloatDataList()float vector data-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFloatDataList
List<Float> getFloatDataList()
float vector data
repeated float float_data = 1;- Returns:
- A list containing the floatData.
-
getFloatDataCount
int getFloatDataCount()
float vector data
repeated float float_data = 1;- Returns:
- The count of floatData.
-
getFloatData
float getFloatData(int index)
float vector data
repeated float float_data = 1;- Parameters:
index- The index of the element to return.- Returns:
- The floatData at the given index.
-
getBinaryData
com.google.protobuf.ByteString getBinaryData()
binary vector data
bytes binary_data = 2;- Returns:
- The binaryData.
-
-