Interface ListSynonymSetsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListSynonymSetsResponse,ListSynonymSetsResponse.Builder
public interface ListSynonymSetsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNextPageToken()A page token, received from a previous `ListSynonymSets` call.com.google.protobuf.ByteStringgetNextPageTokenBytes()A page token, received from a previous `ListSynonymSets` call.SynonymSetgetSynonymSets(int index)The synonymSets from the specified parent.intgetSynonymSetsCount()The synonymSets from the specified parent.List<SynonymSet>getSynonymSetsList()The synonymSets from the specified parent.SynonymSetOrBuildergetSynonymSetsOrBuilder(int index)The synonymSets from the specified parent.List<? extends SynonymSetOrBuilder>getSynonymSetsOrBuilderList()The synonymSets from the specified parent.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSynonymSetsList
List<SynonymSet> getSynonymSetsList()
The synonymSets from the specified parent.
repeated .google.cloud.contentwarehouse.v1.SynonymSet synonym_sets = 1;
-
getSynonymSets
SynonymSet getSynonymSets(int index)
The synonymSets from the specified parent.
repeated .google.cloud.contentwarehouse.v1.SynonymSet synonym_sets = 1;
-
getSynonymSetsCount
int getSynonymSetsCount()
The synonymSets from the specified parent.
repeated .google.cloud.contentwarehouse.v1.SynonymSet synonym_sets = 1;
-
getSynonymSetsOrBuilderList
List<? extends SynonymSetOrBuilder> getSynonymSetsOrBuilderList()
The synonymSets from the specified parent.
repeated .google.cloud.contentwarehouse.v1.SynonymSet synonym_sets = 1;
-
getSynonymSetsOrBuilder
SynonymSetOrBuilder getSynonymSetsOrBuilder(int index)
The synonymSets from the specified parent.
repeated .google.cloud.contentwarehouse.v1.SynonymSet synonym_sets = 1;
-
getNextPageToken
String getNextPageToken()
A page token, received from a previous `ListSynonymSets` call. Provide this to retrieve the subsequent page.
string next_page_token = 2;- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A page token, received from a previous `ListSynonymSets` call. Provide this to retrieve the subsequent page.
string next_page_token = 2;- Returns:
- The bytes for nextPageToken.
-
-