Interface ListComponentsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListComponentsResponse,ListComponentsResponse.Builder
public interface ListComponentsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetComponents(int index)The components from the specified organization.com.google.protobuf.ByteStringgetComponentsBytes(int index)The components from the specified organization.intgetComponentsCount()The components from the specified organization.List<String>getComponentsList()The components from the specified organization.StringgetNextPageToken()A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token that can be sent as `page_token` to retrieve the next page.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getComponentsList
List<String> getComponentsList()
The components from the specified organization.
repeated string components = 1;- Returns:
- A list containing the components.
-
getComponentsCount
int getComponentsCount()
The components from the specified organization.
repeated string components = 1;- Returns:
- The count of components.
-
getComponents
String getComponents(int index)
The components from the specified organization.
repeated string components = 1;- Parameters:
index- The index of the element to return.- Returns:
- The components at the given index.
-
getComponentsBytes
com.google.protobuf.ByteString getComponentsBytes(int index)
The components from the specified organization.
repeated string components = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the components at the given index.
-
getNextPageToken
String getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-