Package com.google.cloud.automl.v1
Interface ListModelEvaluationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListModelEvaluationsResponse
,ListModelEvaluationsResponse.Builder
public interface ListModelEvaluationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ModelEvaluation
getModelEvaluation(int index)
List of model evaluations in the requested page.int
getModelEvaluationCount()
List of model evaluations in the requested page.List<ModelEvaluation>
getModelEvaluationList()
List of model evaluations in the requested page.ModelEvaluationOrBuilder
getModelEvaluationOrBuilder(int index)
List of model evaluations in the requested page.List<? extends ModelEvaluationOrBuilder>
getModelEvaluationOrBuilderList()
List of model evaluations in the requested page.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
-
getModelEvaluationList
List<ModelEvaluation> getModelEvaluationList()
List of model evaluations in the requested page.
repeated .google.cloud.automl.v1.ModelEvaluation model_evaluation = 1;
-
getModelEvaluation
ModelEvaluation getModelEvaluation(int index)
List of model evaluations in the requested page.
repeated .google.cloud.automl.v1.ModelEvaluation model_evaluation = 1;
-
getModelEvaluationCount
int getModelEvaluationCount()
List of model evaluations in the requested page.
repeated .google.cloud.automl.v1.ModelEvaluation model_evaluation = 1;
-
getModelEvaluationOrBuilderList
List<? extends ModelEvaluationOrBuilder> getModelEvaluationOrBuilderList()
List of model evaluations in the requested page.
repeated .google.cloud.automl.v1.ModelEvaluation model_evaluation = 1;
-
getModelEvaluationOrBuilder
ModelEvaluationOrBuilder getModelEvaluationOrBuilder(int index)
List of model evaluations in the requested page.
repeated .google.cloud.automl.v1.ModelEvaluation model_evaluation = 1;
-
getNextPageToken
String getNextPageToken()
A token to retrieve next page of results. Pass to the [ListModelEvaluationsRequest.page_token][google.cloud.automl.v1.ListModelEvaluationsRequest.page_token] field of a new [AutoMl.ListModelEvaluations][google.cloud.automl.v1.AutoMl.ListModelEvaluations] request to obtain that page.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
A token to retrieve next page of results. Pass to the [ListModelEvaluationsRequest.page_token][google.cloud.automl.v1.ListModelEvaluationsRequest.page_token] field of a new [AutoMl.ListModelEvaluations][google.cloud.automl.v1.AutoMl.ListModelEvaluations] request to obtain that page.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-