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 floatgetVectorData(int index)binary vector dataintgetVectorDataCount()binary vector dataList<Float>getVectorDataList()binary vector data-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getVectorDataList
List<Float> getVectorDataList()
binary vector data
repeated float vector_data = 1;- Returns:
- A list containing the vectorData.
-
getVectorDataCount
int getVectorDataCount()
binary vector data
repeated float vector_data = 1;- Returns:
- The count of vectorData.
-
getVectorData
float getVectorData(int index)
binary vector data
repeated float vector_data = 1;- Parameters:
index- The index of the element to return.- Returns:
- The vectorData at the given index.
-
-