Interface ListProcessorsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListProcessorsResponse
,ListProcessorsResponse.Builder
public interface ListProcessorsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
Points to the next processor, otherwise empty.com.google.protobuf.ByteString
getNextPageTokenBytes()
Points to the next processor, otherwise empty.Processor
getProcessors(int index)
The list of processors.int
getProcessorsCount()
The list of processors.List<Processor>
getProcessorsList()
The list of processors.ProcessorOrBuilder
getProcessorsOrBuilder(int index)
The list of processors.List<? extends ProcessorOrBuilder>
getProcessorsOrBuilderList()
The list of processors.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProcessorsList
List<Processor> getProcessorsList()
The list of processors.
repeated .google.cloud.documentai.v1beta3.Processor processors = 1;
-
getProcessors
Processor getProcessors(int index)
The list of processors.
repeated .google.cloud.documentai.v1beta3.Processor processors = 1;
-
getProcessorsCount
int getProcessorsCount()
The list of processors.
repeated .google.cloud.documentai.v1beta3.Processor processors = 1;
-
getProcessorsOrBuilderList
List<? extends ProcessorOrBuilder> getProcessorsOrBuilderList()
The list of processors.
repeated .google.cloud.documentai.v1beta3.Processor processors = 1;
-
getProcessorsOrBuilder
ProcessorOrBuilder getProcessorsOrBuilder(int index)
The list of processors.
repeated .google.cloud.documentai.v1beta3.Processor processors = 1;
-
getNextPageToken
String getNextPageToken()
Points to the next processor, otherwise empty.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Points to the next processor, otherwise empty.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-