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