Package io.milvus.grpc
Interface BytesArrayOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BytesArray,BytesArray.Builder
public interface BytesArrayOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetData(int index)repeated bytes data = 1;intgetDataCount()repeated bytes data = 1;List<com.google.protobuf.ByteString>getDataList()repeated bytes data = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDataList
List<com.google.protobuf.ByteString> getDataList()
repeated bytes data = 1;- Returns:
- A list containing the data.
-
getDataCount
int getDataCount()
repeated bytes data = 1;- Returns:
- The count of data.
-
getData
com.google.protobuf.ByteString getData(int index)
repeated bytes data = 1;- Parameters:
index- The index of the element to return.- Returns:
- The data at the given index.
-
-