Package com.google.cloud.documentai.v1
Interface ListEvaluationsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListEvaluationsResponse
,ListEvaluationsResponse.Builder
public interface ListEvaluationsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Evaluation
getEvaluations(int index)
The evaluations requested.int
getEvaluationsCount()
The evaluations requested.List<Evaluation>
getEvaluationsList()
The evaluations requested.EvaluationOrBuilder
getEvaluationsOrBuilder(int index)
The evaluations requested.List<? extends EvaluationOrBuilder>
getEvaluationsOrBuilderList()
The evaluations requested.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.-
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 evaluations requested.
repeated .google.cloud.documentai.v1.Evaluation evaluations = 1;
-
getEvaluations
Evaluation getEvaluations(int index)
The evaluations requested.
repeated .google.cloud.documentai.v1.Evaluation evaluations = 1;
-
getEvaluationsCount
int getEvaluationsCount()
The evaluations requested.
repeated .google.cloud.documentai.v1.Evaluation evaluations = 1;
-
getEvaluationsOrBuilderList
List<? extends EvaluationOrBuilder> getEvaluationsOrBuilderList()
The evaluations requested.
repeated .google.cloud.documentai.v1.Evaluation evaluations = 1;
-
getEvaluationsOrBuilder
EvaluationOrBuilder getEvaluationsOrBuilder(int index)
The evaluations requested.
repeated .google.cloud.documentai.v1.Evaluation evaluations = 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.
-
-