Interface AnnotateFileResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AnnotateFileResponse
,AnnotateFileResponse.Builder
public interface AnnotateFileResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputConfig
getInputConfig()
Information about the file for which this response is generated.InputConfigOrBuilder
getInputConfigOrBuilder()
Information about the file for which this response is generated.AnnotateImageResponse
getResponses(int index)
Individual responses to images found within the file.int
getResponsesCount()
Individual responses to images found within the file.List<AnnotateImageResponse>
getResponsesList()
Individual responses to images found within the file.AnnotateImageResponseOrBuilder
getResponsesOrBuilder(int index)
Individual responses to images found within the file.List<? extends AnnotateImageResponseOrBuilder>
getResponsesOrBuilderList()
Individual responses to images found within the file.boolean
hasInputConfig()
Information about the file for which this response is generated.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInputConfig
boolean hasInputConfig()
Information about the file for which this response is generated.
.google.cloud.vision.v1p3beta1.InputConfig input_config = 1;
- Returns:
- Whether the inputConfig field is set.
-
getInputConfig
InputConfig getInputConfig()
Information about the file for which this response is generated.
.google.cloud.vision.v1p3beta1.InputConfig input_config = 1;
- Returns:
- The inputConfig.
-
getInputConfigOrBuilder
InputConfigOrBuilder getInputConfigOrBuilder()
Information about the file for which this response is generated.
.google.cloud.vision.v1p3beta1.InputConfig input_config = 1;
-
getResponsesList
List<AnnotateImageResponse> getResponsesList()
Individual responses to images found within the file.
repeated .google.cloud.vision.v1p3beta1.AnnotateImageResponse responses = 2;
-
getResponses
AnnotateImageResponse getResponses(int index)
Individual responses to images found within the file.
repeated .google.cloud.vision.v1p3beta1.AnnotateImageResponse responses = 2;
-
getResponsesCount
int getResponsesCount()
Individual responses to images found within the file.
repeated .google.cloud.vision.v1p3beta1.AnnotateImageResponse responses = 2;
-
getResponsesOrBuilderList
List<? extends AnnotateImageResponseOrBuilder> getResponsesOrBuilderList()
Individual responses to images found within the file.
repeated .google.cloud.vision.v1p3beta1.AnnotateImageResponse responses = 2;
-
getResponsesOrBuilder
AnnotateImageResponseOrBuilder getResponsesOrBuilder(int index)
Individual responses to images found within the file.
repeated .google.cloud.vision.v1p3beta1.AnnotateImageResponse responses = 2;
-
-