Interface SearchEvaluationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SearchEvaluationsResponse
,SearchEvaluationsResponse.Builder
public interface SearchEvaluationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Evaluation
getEvaluations(int index)
The list of evaluations matching the search.int
getEvaluationsCount()
The list of evaluations matching the search.List<Evaluation>
getEvaluationsList()
The list of evaluations matching the search.EvaluationOrBuilder
getEvaluationsOrBuilder(int index)
The list of evaluations matching the search.List<? extends EvaluationOrBuilder>
getEvaluationsOrBuilderList()
The list of evaluations matching the search.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
-
getEvaluationsList
List<Evaluation> getEvaluationsList()
The list of evaluations matching the search.
repeated .google.cloud.datalabeling.v1beta1.Evaluation evaluations = 1;
-
getEvaluations
Evaluation getEvaluations(int index)
The list of evaluations matching the search.
repeated .google.cloud.datalabeling.v1beta1.Evaluation evaluations = 1;
-
getEvaluationsCount
int getEvaluationsCount()
The list of evaluations matching the search.
repeated .google.cloud.datalabeling.v1beta1.Evaluation evaluations = 1;
-
getEvaluationsOrBuilderList
List<? extends EvaluationOrBuilder> getEvaluationsOrBuilderList()
The list of evaluations matching the search.
repeated .google.cloud.datalabeling.v1beta1.Evaluation evaluations = 1;
-
getEvaluationsOrBuilder
EvaluationOrBuilder getEvaluationsOrBuilder(int index)
The list of evaluations matching the search.
repeated .google.cloud.datalabeling.v1beta1.Evaluation evaluations = 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.
-
-