Package com.google.cloud.translate.v3
Interface ListGlossariesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListGlossariesResponse,ListGlossariesResponse.Builder
public interface ListGlossariesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GlossarygetGlossaries(int index)The list of glossaries for a project.intgetGlossariesCount()The list of glossaries for a project.List<Glossary>getGlossariesList()The list of glossaries for a project.GlossaryOrBuildergetGlossariesOrBuilder(int index)The list of glossaries for a project.List<? extends GlossaryOrBuilder>getGlossariesOrBuilderList()The list of glossaries for a project.StringgetNextPageToken()A token to retrieve a page of results.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token to retrieve a page of results.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getGlossariesList
List<Glossary> getGlossariesList()
The list of glossaries for a project.
repeated .google.cloud.translation.v3.Glossary glossaries = 1;
-
getGlossaries
Glossary getGlossaries(int index)
The list of glossaries for a project.
repeated .google.cloud.translation.v3.Glossary glossaries = 1;
-
getGlossariesCount
int getGlossariesCount()
The list of glossaries for a project.
repeated .google.cloud.translation.v3.Glossary glossaries = 1;
-
getGlossariesOrBuilderList
List<? extends GlossaryOrBuilder> getGlossariesOrBuilderList()
The list of glossaries for a project.
repeated .google.cloud.translation.v3.Glossary glossaries = 1;
-
getGlossariesOrBuilder
GlossaryOrBuilder getGlossariesOrBuilder(int index)
The list of glossaries for a project.
repeated .google.cloud.translation.v3.Glossary glossaries = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve a page of results. Pass this value in the [ListGlossariesRequest.page_token] field in the subsequent call to `ListGlossaries` method to retrieve the next page of results.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve a page of results. Pass this value in the [ListGlossariesRequest.page_token] field in the subsequent call to `ListGlossaries` method to retrieve the next page of results.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-