Interface ListDatasetsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListDatasetsResponse
,ListDatasetsResponse.Builder
public interface ListDatasetsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Dataset
getDatasets(int index)
All the datasets for the project.int
getDatasetsCount()
All the datasets for the project.List<Dataset>
getDatasetsList()
All the datasets for the project.DatasetOrBuilder
getDatasetsOrBuilder(int index)
All the datasets for the project.List<? extends DatasetOrBuilder>
getDatasetsOrBuilderList()
All the datasets for the project.String
getNextPageToken()
A token that can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
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
-
getDatasetsList
List<Dataset> getDatasetsList()
All the datasets for the project.
repeated .google.maps.mapsplatformdatasets.v1.Dataset datasets = 1;
-
getDatasets
Dataset getDatasets(int index)
All the datasets for the project.
repeated .google.maps.mapsplatformdatasets.v1.Dataset datasets = 1;
-
getDatasetsCount
int getDatasetsCount()
All the datasets for the project.
repeated .google.maps.mapsplatformdatasets.v1.Dataset datasets = 1;
-
getDatasetsOrBuilderList
List<? extends DatasetOrBuilder> getDatasetsOrBuilderList()
All the datasets for the project.
repeated .google.maps.mapsplatformdatasets.v1.Dataset datasets = 1;
-
getDatasetsOrBuilder
DatasetOrBuilder getDatasetsOrBuilder(int index)
All the datasets for the project.
repeated .google.maps.mapsplatformdatasets.v1.Dataset datasets = 1;
-
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.
-
-