Package com.google.cloud.location
Interface ListLocationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListLocationsResponse,ListLocationsResponse.Builder
public interface ListLocationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LocationgetLocations(int index)A list of locations that matches the specified filter in the request.intgetLocationsCount()A list of locations that matches the specified filter in the request.List<Location>getLocationsList()A list of locations that matches the specified filter in the request.LocationOrBuildergetLocationsOrBuilder(int index)A list of locations that matches the specified filter in the request.List<? extends LocationOrBuilder>getLocationsOrBuilderList()A list of locations that matches the specified filter in the request.StringgetNextPageToken()The standard List next-page token.com.google.protobuf.ByteStringgetNextPageTokenBytes()The standard List next-page token.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLocationsList
List<Location> getLocationsList()
A list of locations that matches the specified filter in the request.
repeated .google.cloud.location.Location locations = 1;
-
getLocations
Location getLocations(int index)
A list of locations that matches the specified filter in the request.
repeated .google.cloud.location.Location locations = 1;
-
getLocationsCount
int getLocationsCount()
A list of locations that matches the specified filter in the request.
repeated .google.cloud.location.Location locations = 1;
-
getLocationsOrBuilderList
List<? extends LocationOrBuilder> getLocationsOrBuilderList()
A list of locations that matches the specified filter in the request.
repeated .google.cloud.location.Location locations = 1;
-
getLocationsOrBuilder
LocationOrBuilder getLocationsOrBuilder(int index)
A list of locations that matches the specified filter in the request.
repeated .google.cloud.location.Location locations = 1;
-
getNextPageToken
String getNextPageToken()
The standard List next-page token.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
The standard List next-page token.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-