Package io.milvus.grpc
Interface ListAliasesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListAliasesResponse,ListAliasesResponse.Builder
public interface ListAliasesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAliases(int index)repeated string aliases = 4;com.google.protobuf.ByteStringgetAliasesBytes(int index)repeated string aliases = 4;intgetAliasesCount()repeated string aliases = 4;List<String>getAliasesList()repeated string aliases = 4;StringgetCollectionName()string collection_name = 3;com.google.protobuf.ByteStringgetCollectionNameBytes()string collection_name = 3;StringgetDbName()string db_name = 2;com.google.protobuf.ByteStringgetDbNameBytes()string db_name = 2;StatusgetStatus()Response statusStatusOrBuildergetStatusOrBuilder()Response statusbooleanhasStatus()Response status-
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()
Response status
.milvus.proto.common.Status status = 1;- Returns:
- Whether the status field is set.
-
getStatus
Status getStatus()
Response status
.milvus.proto.common.Status status = 1;- Returns:
- The status.
-
getStatusOrBuilder
StatusOrBuilder getStatusOrBuilder()
Response status
.milvus.proto.common.Status status = 1;
-
getDbName
String getDbName()
string db_name = 2;- Returns:
- The dbName.
-
getDbNameBytes
com.google.protobuf.ByteString getDbNameBytes()
string db_name = 2;- Returns:
- The bytes for dbName.
-
getCollectionName
String getCollectionName()
string collection_name = 3;- Returns:
- The collectionName.
-
getCollectionNameBytes
com.google.protobuf.ByteString getCollectionNameBytes()
string collection_name = 3;- Returns:
- The bytes for collectionName.
-
getAliasesList
List<String> getAliasesList()
repeated string aliases = 4;- Returns:
- A list containing the aliases.
-
getAliasesCount
int getAliasesCount()
repeated string aliases = 4;- Returns:
- The count of aliases.
-
getAliases
String getAliases(int index)
repeated string aliases = 4;- Parameters:
index- The index of the element to return.- Returns:
- The aliases at the given index.
-
getAliasesBytes
com.google.protobuf.ByteString getAliasesBytes(int index)
repeated string aliases = 4;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the aliases at the given index.
-
-