Package io.milvus.grpc
Interface StringArrayOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StringArray,StringArray.Builder
public interface StringArrayOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetData(int index)repeated string data = 1;com.google.protobuf.ByteStringgetDataBytes(int index)repeated string data = 1;intgetDataCount()repeated string data = 1;List<String>getDataList()repeated string 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<String> getDataList()
repeated string data = 1;- Returns:
- A list containing the data.
-
getDataCount
int getDataCount()
repeated string data = 1;- Returns:
- The count of data.
-
getData
String getData(int index)
repeated string data = 1;- Parameters:
index- The index of the element to return.- Returns:
- The data at the given index.
-
getDataBytes
com.google.protobuf.ByteString getDataBytes(int index)
repeated string data = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the data at the given index.
-
-