Package com.google.cloud.speech.v1
Interface ListPhraseSetResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListPhraseSetResponse
,ListPhraseSetResponse.Builder
public interface ListPhraseSetResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
A token, which can be sent as `page_token` to retrieve the next page.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token, which can be sent as `page_token` to retrieve the next page.PhraseSet
getPhraseSets(int index)
The phrase set.int
getPhraseSetsCount()
The phrase set.List<PhraseSet>
getPhraseSetsList()
The phrase set.PhraseSetOrBuilder
getPhraseSetsOrBuilder(int index)
The phrase set.List<? extends PhraseSetOrBuilder>
getPhraseSetsOrBuilderList()
The phrase set.-
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 phrase set.
repeated .google.cloud.speech.v1.PhraseSet phrase_sets = 1;
-
getPhraseSets
PhraseSet getPhraseSets(int index)
The phrase set.
repeated .google.cloud.speech.v1.PhraseSet phrase_sets = 1;
-
getPhraseSetsCount
int getPhraseSetsCount()
The phrase set.
repeated .google.cloud.speech.v1.PhraseSet phrase_sets = 1;
-
getPhraseSetsOrBuilderList
List<? extends PhraseSetOrBuilder> getPhraseSetsOrBuilderList()
The phrase set.
repeated .google.cloud.speech.v1.PhraseSet phrase_sets = 1;
-
getPhraseSetsOrBuilder
PhraseSetOrBuilder getPhraseSetsOrBuilder(int index)
The phrase set.
repeated .google.cloud.speech.v1.PhraseSet phrase_sets = 1;
-
getNextPageToken
String getNextPageToken()
A token, which 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, which 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.
-
-