Interface ListExamplesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListExamplesResponse
,ListExamplesResponse.Builder
public interface ListExamplesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Example
getExamples(int index)
The list of examples to return.int
getExamplesCount()
The list of examples to return.List<Example>
getExamplesList()
The list of examples to return.ExampleOrBuilder
getExamplesOrBuilder(int index)
The list of examples to return.List<? extends ExampleOrBuilder>
getExamplesOrBuilderList()
The list of examples to return.String
getNextPageToken()
A token to retrieve next page of results.com.google.protobuf.ByteString
getNextPageTokenBytes()
A token to retrieve next 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
-
getExamplesList
List<Example> getExamplesList()
The list of examples to return.
repeated .google.cloud.datalabeling.v1beta1.Example examples = 1;
-
getExamples
Example getExamples(int index)
The list of examples to return.
repeated .google.cloud.datalabeling.v1beta1.Example examples = 1;
-
getExamplesCount
int getExamplesCount()
The list of examples to return.
repeated .google.cloud.datalabeling.v1beta1.Example examples = 1;
-
getExamplesOrBuilderList
List<? extends ExampleOrBuilder> getExamplesOrBuilderList()
The list of examples to return.
repeated .google.cloud.datalabeling.v1beta1.Example examples = 1;
-
getExamplesOrBuilder
ExampleOrBuilder getExamplesOrBuilder(int index)
The list of examples to return.
repeated .google.cloud.datalabeling.v1beta1.Example examples = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve next page of results.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-