Package io.milvus.grpc
Interface ListDatabasesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDatabasesResponse,ListDatabasesResponse.Builder
public interface ListDatabasesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDbNames(int index)repeated string db_names = 2;com.google.protobuf.ByteStringgetDbNamesBytes(int index)repeated string db_names = 2;intgetDbNamesCount()repeated string db_names = 2;List<String>getDbNamesList()repeated string db_names = 2;StatusgetStatus().milvus.proto.common.Status status = 1;StatusOrBuildergetStatusOrBuilder().milvus.proto.common.Status status = 1;booleanhasStatus().milvus.proto.common.Status status = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStatus
boolean hasStatus()
.milvus.proto.common.Status status = 1;- Returns:
- Whether the status field is set.
-
getStatus
Status getStatus()
.milvus.proto.common.Status status = 1;- Returns:
- The status.
-
getStatusOrBuilder
StatusOrBuilder getStatusOrBuilder()
.milvus.proto.common.Status status = 1;
-
getDbNamesList
List<String> getDbNamesList()
repeated string db_names = 2;- Returns:
- A list containing the dbNames.
-
getDbNamesCount
int getDbNamesCount()
repeated string db_names = 2;- Returns:
- The count of dbNames.
-
getDbNames
String getDbNames(int index)
repeated string db_names = 2;- Parameters:
index- The index of the element to return.- Returns:
- The dbNames at the given index.
-
getDbNamesBytes
com.google.protobuf.ByteString getDbNamesBytes(int index)
repeated string db_names = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the dbNames at the given index.
-
-