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 Location
getLocations(int index)
A list of locations that matches the specified filter in the request.int
getLocationsCount()
A list of locations that matches the specified filter in the request.java.util.List<Location>
getLocationsList()
A list of locations that matches the specified filter in the request.LocationOrBuilder
getLocationsOrBuilder(int index)
A list of locations that matches the specified filter in the request.java.util.List<? extends LocationOrBuilder>
getLocationsOrBuilderList()
A list of locations that matches the specified filter in the request.java.lang.String
getNextPageToken()
The standard List next-page token.com.google.protobuf.ByteString
getNextPageTokenBytes()
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
java.util.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
java.util.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
java.lang.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.
-
-