Package com.google.cloud.documentai.v1
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 StringgetNextPageToken()Points to the next processor, otherwise empty.com.google.protobuf.ByteStringgetNextPageTokenBytes()Points to the next processor, otherwise empty.ProcessorgetProcessors(int index)The list of processors.intgetProcessorsCount()The list of processors.List<Processor>getProcessorsList()The list of processors.ProcessorOrBuildergetProcessorsOrBuilder(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.v1.Processor processors = 1;
-
getProcessors
Processor getProcessors(int index)
The list of processors.
repeated .google.cloud.documentai.v1.Processor processors = 1;
-
getProcessorsCount
int getProcessorsCount()
The list of processors.
repeated .google.cloud.documentai.v1.Processor processors = 1;
-
getProcessorsOrBuilderList
List<? extends ProcessorOrBuilder> getProcessorsOrBuilderList()
The list of processors.
repeated .google.cloud.documentai.v1.Processor processors = 1;
-
getProcessorsOrBuilder
ProcessorOrBuilder getProcessorsOrBuilder(int index)
The list of processors.
repeated .google.cloud.documentai.v1.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.
-
-