Package com.google.cloud.speech.v2
Interface ListPhraseSetsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPhraseSetsResponse,ListPhraseSetsResponse.Builder
public interface ListPhraseSetsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A token, which can be sent as [page_token][google.cloud.speech.v2.ListPhraseSetsRequest.page_token] to retrieve the next page.com.google.protobuf.ByteStringgetNextPageTokenBytes()A token, which can be sent as [page_token][google.cloud.speech.v2.ListPhraseSetsRequest.page_token] to retrieve the next page.PhraseSetgetPhraseSets(int index)The list of requested PhraseSets.intgetPhraseSetsCount()The list of requested PhraseSets.List<PhraseSet>getPhraseSetsList()The list of requested PhraseSets.PhraseSetOrBuildergetPhraseSetsOrBuilder(int index)The list of requested PhraseSets.List<? extends PhraseSetOrBuilder>getPhraseSetsOrBuilderList()The list of requested PhraseSets.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPhraseSetsList
List<PhraseSet> getPhraseSetsList()
The list of requested PhraseSets.
repeated .google.cloud.speech.v2.PhraseSet phrase_sets = 1;
-
getPhraseSets
PhraseSet getPhraseSets(int index)
The list of requested PhraseSets.
repeated .google.cloud.speech.v2.PhraseSet phrase_sets = 1;
-
getPhraseSetsCount
int getPhraseSetsCount()
The list of requested PhraseSets.
repeated .google.cloud.speech.v2.PhraseSet phrase_sets = 1;
-
getPhraseSetsOrBuilderList
List<? extends PhraseSetOrBuilder> getPhraseSetsOrBuilderList()
The list of requested PhraseSets.
repeated .google.cloud.speech.v2.PhraseSet phrase_sets = 1;
-
getPhraseSetsOrBuilder
PhraseSetOrBuilder getPhraseSetsOrBuilder(int index)
The list of requested PhraseSets.
repeated .google.cloud.speech.v2.PhraseSet phrase_sets = 1;
-
getNextPageToken
String getNextPageToken()
A token, which can be sent as [page_token][google.cloud.speech.v2.ListPhraseSetsRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages. This token expires after 72 hours.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token, which can be sent as [page_token][google.cloud.speech.v2.ListPhraseSetsRequest.page_token] to retrieve the next page. If this field is omitted, there are no subsequent pages. This token expires after 72 hours.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-