Package com.google.cloud.domains.v1
Interface ListRegistrationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListRegistrationsResponse
,ListRegistrationsResponse.Builder
public interface ListRegistrationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
When present, there are more results to retrieve.com.google.protobuf.ByteString
getNextPageTokenBytes()
When present, there are more results to retrieve.Registration
getRegistrations(int index)
A list of `Registration`s.int
getRegistrationsCount()
A list of `Registration`s.List<Registration>
getRegistrationsList()
A list of `Registration`s.RegistrationOrBuilder
getRegistrationsOrBuilder(int index)
A list of `Registration`s.List<? extends RegistrationOrBuilder>
getRegistrationsOrBuilderList()
A list of `Registration`s.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRegistrationsList
List<Registration> getRegistrationsList()
A list of `Registration`s.
repeated .google.cloud.domains.v1.Registration registrations = 1;
-
getRegistrations
Registration getRegistrations(int index)
A list of `Registration`s.
repeated .google.cloud.domains.v1.Registration registrations = 1;
-
getRegistrationsCount
int getRegistrationsCount()
A list of `Registration`s.
repeated .google.cloud.domains.v1.Registration registrations = 1;
-
getRegistrationsOrBuilderList
List<? extends RegistrationOrBuilder> getRegistrationsOrBuilderList()
A list of `Registration`s.
repeated .google.cloud.domains.v1.Registration registrations = 1;
-
getRegistrationsOrBuilder
RegistrationOrBuilder getRegistrationsOrBuilder(int index)
A list of `Registration`s.
repeated .google.cloud.domains.v1.Registration registrations = 1;
-
getNextPageToken
String getNextPageToken()
When present, there are more results to retrieve. Set `page_token` to this value on a subsequent call to get the next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
When present, there are more results to retrieve. Set `page_token` to this value on a subsequent call to get the next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-