Package io.milvus.grpc
Interface ListCredUsersResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListCredUsersResponse,ListCredUsersResponse.Builder
public interface ListCredUsersResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusgetStatus()Contain error_code and reasonStatusOrBuildergetStatusOrBuilder()Contain error_code and reasonStringgetUsernames(int index)username arraycom.google.protobuf.ByteStringgetUsernamesBytes(int index)username arrayintgetUsernamesCount()username arrayList<String>getUsernamesList()username arraybooleanhasStatus()Contain error_code and reason-
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()
Contain error_code and reason
.milvus.proto.common.Status status = 1;- Returns:
- Whether the status field is set.
-
getStatus
Status getStatus()
Contain error_code and reason
.milvus.proto.common.Status status = 1;- Returns:
- The status.
-
getStatusOrBuilder
StatusOrBuilder getStatusOrBuilder()
Contain error_code and reason
.milvus.proto.common.Status status = 1;
-
getUsernamesList
List<String> getUsernamesList()
username array
repeated string usernames = 2;- Returns:
- A list containing the usernames.
-
getUsernamesCount
int getUsernamesCount()
username array
repeated string usernames = 2;- Returns:
- The count of usernames.
-
getUsernames
String getUsernames(int index)
username array
repeated string usernames = 2;- Parameters:
index- The index of the element to return.- Returns:
- The usernames at the given index.
-
getUsernamesBytes
com.google.protobuf.ByteString getUsernamesBytes(int index)
username array
repeated string usernames = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the usernames at the given index.
-
-