com.google.cloud.vision.v1.Paragraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-google-cloud-vision-v1 Show documentation
Show all versions of grpc-google-cloud-vision-v1 Show documentation
GRPC library for grpc-google-cloud-vision-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/vision/v1/text_annotation.proto
package com.google.cloud.vision.v1;
/**
*
* Structural unit of text representing a number of words in certain order.
*
*
* Protobuf type {@code google.cloud.vision.v1.Paragraph}
*/
public final class Paragraph extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.cloud.vision.v1.Paragraph)
ParagraphOrBuilder {
// Use Paragraph.newBuilder() to construct.
private Paragraph(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Paragraph() {
words_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return com.google.protobuf.UnknownFieldSet.getDefaultInstance();
}
private Paragraph(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
int mutable_bitField0_ = 0;
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!input.skipField(tag)) {
done = true;
}
break;
}
case 10: {
com.google.cloud.vision.v1.TextAnnotation.TextProperty.Builder subBuilder = null;
if (property_ != null) {
subBuilder = property_.toBuilder();
}
property_ = input.readMessage(com.google.cloud.vision.v1.TextAnnotation.TextProperty.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(property_);
property_ = subBuilder.buildPartial();
}
break;
}
case 18: {
com.google.cloud.vision.v1.BoundingPoly.Builder subBuilder = null;
if (boundingBox_ != null) {
subBuilder = boundingBox_.toBuilder();
}
boundingBox_ = input.readMessage(com.google.cloud.vision.v1.BoundingPoly.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(boundingBox_);
boundingBox_ = subBuilder.buildPartial();
}
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
words_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000004;
}
words_.add(
input.readMessage(com.google.cloud.vision.v1.Word.parser(), extensionRegistry));
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
words_ = java.util.Collections.unmodifiableList(words_);
}
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.vision.v1.TextAnnotationProto.internal_static_google_cloud_vision_v1_Paragraph_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.vision.v1.TextAnnotationProto.internal_static_google_cloud_vision_v1_Paragraph_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.vision.v1.Paragraph.class, com.google.cloud.vision.v1.Paragraph.Builder.class);
}
private int bitField0_;
public static final int PROPERTY_FIELD_NUMBER = 1;
private com.google.cloud.vision.v1.TextAnnotation.TextProperty property_;
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public boolean hasProperty() {
return property_ != null;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public com.google.cloud.vision.v1.TextAnnotation.TextProperty getProperty() {
return property_ == null ? com.google.cloud.vision.v1.TextAnnotation.TextProperty.getDefaultInstance() : property_;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public com.google.cloud.vision.v1.TextAnnotation.TextPropertyOrBuilder getPropertyOrBuilder() {
return getProperty();
}
public static final int BOUNDING_BOX_FIELD_NUMBER = 2;
private com.google.cloud.vision.v1.BoundingPoly boundingBox_;
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public boolean hasBoundingBox() {
return boundingBox_ != null;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public com.google.cloud.vision.v1.BoundingPoly getBoundingBox() {
return boundingBox_ == null ? com.google.cloud.vision.v1.BoundingPoly.getDefaultInstance() : boundingBox_;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public com.google.cloud.vision.v1.BoundingPolyOrBuilder getBoundingBoxOrBuilder() {
return getBoundingBox();
}
public static final int WORDS_FIELD_NUMBER = 3;
private java.util.List words_;
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public java.util.List getWordsList() {
return words_;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public java.util.List extends com.google.cloud.vision.v1.WordOrBuilder>
getWordsOrBuilderList() {
return words_;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public int getWordsCount() {
return words_.size();
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.Word getWords(int index) {
return words_.get(index);
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.WordOrBuilder getWordsOrBuilder(
int index) {
return words_.get(index);
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (property_ != null) {
output.writeMessage(1, getProperty());
}
if (boundingBox_ != null) {
output.writeMessage(2, getBoundingBox());
}
for (int i = 0; i < words_.size(); i++) {
output.writeMessage(3, words_.get(i));
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (property_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getProperty());
}
if (boundingBox_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getBoundingBox());
}
for (int i = 0; i < words_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, words_.get(i));
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.vision.v1.Paragraph)) {
return super.equals(obj);
}
com.google.cloud.vision.v1.Paragraph other = (com.google.cloud.vision.v1.Paragraph) obj;
boolean result = true;
result = result && (hasProperty() == other.hasProperty());
if (hasProperty()) {
result = result && getProperty()
.equals(other.getProperty());
}
result = result && (hasBoundingBox() == other.hasBoundingBox());
if (hasBoundingBox()) {
result = result && getBoundingBox()
.equals(other.getBoundingBox());
}
result = result && getWordsList()
.equals(other.getWordsList());
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasProperty()) {
hash = (37 * hash) + PROPERTY_FIELD_NUMBER;
hash = (53 * hash) + getProperty().hashCode();
}
if (hasBoundingBox()) {
hash = (37 * hash) + BOUNDING_BOX_FIELD_NUMBER;
hash = (53 * hash) + getBoundingBox().hashCode();
}
if (getWordsCount() > 0) {
hash = (37 * hash) + WORDS_FIELD_NUMBER;
hash = (53 * hash) + getWordsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.cloud.vision.v1.Paragraph parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.vision.v1.Paragraph parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.google.cloud.vision.v1.Paragraph parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.cloud.vision.v1.Paragraph prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Structural unit of text representing a number of words in certain order.
*
*
* Protobuf type {@code google.cloud.vision.v1.Paragraph}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.cloud.vision.v1.Paragraph)
com.google.cloud.vision.v1.ParagraphOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.google.cloud.vision.v1.TextAnnotationProto.internal_static_google_cloud_vision_v1_Paragraph_descriptor;
}
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.vision.v1.TextAnnotationProto.internal_static_google_cloud_vision_v1_Paragraph_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.vision.v1.Paragraph.class, com.google.cloud.vision.v1.Paragraph.Builder.class);
}
// Construct using com.google.cloud.vision.v1.Paragraph.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getWordsFieldBuilder();
}
}
public Builder clear() {
super.clear();
if (propertyBuilder_ == null) {
property_ = null;
} else {
property_ = null;
propertyBuilder_ = null;
}
if (boundingBoxBuilder_ == null) {
boundingBox_ = null;
} else {
boundingBox_ = null;
boundingBoxBuilder_ = null;
}
if (wordsBuilder_ == null) {
words_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
} else {
wordsBuilder_.clear();
}
return this;
}
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.google.cloud.vision.v1.TextAnnotationProto.internal_static_google_cloud_vision_v1_Paragraph_descriptor;
}
public com.google.cloud.vision.v1.Paragraph getDefaultInstanceForType() {
return com.google.cloud.vision.v1.Paragraph.getDefaultInstance();
}
public com.google.cloud.vision.v1.Paragraph build() {
com.google.cloud.vision.v1.Paragraph result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public com.google.cloud.vision.v1.Paragraph buildPartial() {
com.google.cloud.vision.v1.Paragraph result = new com.google.cloud.vision.v1.Paragraph(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (propertyBuilder_ == null) {
result.property_ = property_;
} else {
result.property_ = propertyBuilder_.build();
}
if (boundingBoxBuilder_ == null) {
result.boundingBox_ = boundingBox_;
} else {
result.boundingBox_ = boundingBoxBuilder_.build();
}
if (wordsBuilder_ == null) {
if (((bitField0_ & 0x00000004) == 0x00000004)) {
words_ = java.util.Collections.unmodifiableList(words_);
bitField0_ = (bitField0_ & ~0x00000004);
}
result.words_ = words_;
} else {
result.words_ = wordsBuilder_.build();
}
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.cloud.vision.v1.Paragraph) {
return mergeFrom((com.google.cloud.vision.v1.Paragraph)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.vision.v1.Paragraph other) {
if (other == com.google.cloud.vision.v1.Paragraph.getDefaultInstance()) return this;
if (other.hasProperty()) {
mergeProperty(other.getProperty());
}
if (other.hasBoundingBox()) {
mergeBoundingBox(other.getBoundingBox());
}
if (wordsBuilder_ == null) {
if (!other.words_.isEmpty()) {
if (words_.isEmpty()) {
words_ = other.words_;
bitField0_ = (bitField0_ & ~0x00000004);
} else {
ensureWordsIsMutable();
words_.addAll(other.words_);
}
onChanged();
}
} else {
if (!other.words_.isEmpty()) {
if (wordsBuilder_.isEmpty()) {
wordsBuilder_.dispose();
wordsBuilder_ = null;
words_ = other.words_;
bitField0_ = (bitField0_ & ~0x00000004);
wordsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getWordsFieldBuilder() : null;
} else {
wordsBuilder_.addAllMessages(other.words_);
}
}
}
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.google.cloud.vision.v1.Paragraph parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.cloud.vision.v1.Paragraph) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.google.cloud.vision.v1.TextAnnotation.TextProperty property_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.vision.v1.TextAnnotation.TextProperty, com.google.cloud.vision.v1.TextAnnotation.TextProperty.Builder, com.google.cloud.vision.v1.TextAnnotation.TextPropertyOrBuilder> propertyBuilder_;
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public boolean hasProperty() {
return propertyBuilder_ != null || property_ != null;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public com.google.cloud.vision.v1.TextAnnotation.TextProperty getProperty() {
if (propertyBuilder_ == null) {
return property_ == null ? com.google.cloud.vision.v1.TextAnnotation.TextProperty.getDefaultInstance() : property_;
} else {
return propertyBuilder_.getMessage();
}
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public Builder setProperty(com.google.cloud.vision.v1.TextAnnotation.TextProperty value) {
if (propertyBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
property_ = value;
onChanged();
} else {
propertyBuilder_.setMessage(value);
}
return this;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public Builder setProperty(
com.google.cloud.vision.v1.TextAnnotation.TextProperty.Builder builderForValue) {
if (propertyBuilder_ == null) {
property_ = builderForValue.build();
onChanged();
} else {
propertyBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public Builder mergeProperty(com.google.cloud.vision.v1.TextAnnotation.TextProperty value) {
if (propertyBuilder_ == null) {
if (property_ != null) {
property_ =
com.google.cloud.vision.v1.TextAnnotation.TextProperty.newBuilder(property_).mergeFrom(value).buildPartial();
} else {
property_ = value;
}
onChanged();
} else {
propertyBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public Builder clearProperty() {
if (propertyBuilder_ == null) {
property_ = null;
onChanged();
} else {
property_ = null;
propertyBuilder_ = null;
}
return this;
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public com.google.cloud.vision.v1.TextAnnotation.TextProperty.Builder getPropertyBuilder() {
onChanged();
return getPropertyFieldBuilder().getBuilder();
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
public com.google.cloud.vision.v1.TextAnnotation.TextPropertyOrBuilder getPropertyOrBuilder() {
if (propertyBuilder_ != null) {
return propertyBuilder_.getMessageOrBuilder();
} else {
return property_ == null ?
com.google.cloud.vision.v1.TextAnnotation.TextProperty.getDefaultInstance() : property_;
}
}
/**
*
* Additional information detected for the paragraph.
*
*
* .google.cloud.vision.v1.TextAnnotation.TextProperty property = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.vision.v1.TextAnnotation.TextProperty, com.google.cloud.vision.v1.TextAnnotation.TextProperty.Builder, com.google.cloud.vision.v1.TextAnnotation.TextPropertyOrBuilder>
getPropertyFieldBuilder() {
if (propertyBuilder_ == null) {
propertyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.vision.v1.TextAnnotation.TextProperty, com.google.cloud.vision.v1.TextAnnotation.TextProperty.Builder, com.google.cloud.vision.v1.TextAnnotation.TextPropertyOrBuilder>(
getProperty(),
getParentForChildren(),
isClean());
property_ = null;
}
return propertyBuilder_;
}
private com.google.cloud.vision.v1.BoundingPoly boundingBox_ = null;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.vision.v1.BoundingPoly, com.google.cloud.vision.v1.BoundingPoly.Builder, com.google.cloud.vision.v1.BoundingPolyOrBuilder> boundingBoxBuilder_;
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public boolean hasBoundingBox() {
return boundingBoxBuilder_ != null || boundingBox_ != null;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public com.google.cloud.vision.v1.BoundingPoly getBoundingBox() {
if (boundingBoxBuilder_ == null) {
return boundingBox_ == null ? com.google.cloud.vision.v1.BoundingPoly.getDefaultInstance() : boundingBox_;
} else {
return boundingBoxBuilder_.getMessage();
}
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public Builder setBoundingBox(com.google.cloud.vision.v1.BoundingPoly value) {
if (boundingBoxBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
boundingBox_ = value;
onChanged();
} else {
boundingBoxBuilder_.setMessage(value);
}
return this;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public Builder setBoundingBox(
com.google.cloud.vision.v1.BoundingPoly.Builder builderForValue) {
if (boundingBoxBuilder_ == null) {
boundingBox_ = builderForValue.build();
onChanged();
} else {
boundingBoxBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public Builder mergeBoundingBox(com.google.cloud.vision.v1.BoundingPoly value) {
if (boundingBoxBuilder_ == null) {
if (boundingBox_ != null) {
boundingBox_ =
com.google.cloud.vision.v1.BoundingPoly.newBuilder(boundingBox_).mergeFrom(value).buildPartial();
} else {
boundingBox_ = value;
}
onChanged();
} else {
boundingBoxBuilder_.mergeFrom(value);
}
return this;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public Builder clearBoundingBox() {
if (boundingBoxBuilder_ == null) {
boundingBox_ = null;
onChanged();
} else {
boundingBox_ = null;
boundingBoxBuilder_ = null;
}
return this;
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public com.google.cloud.vision.v1.BoundingPoly.Builder getBoundingBoxBuilder() {
onChanged();
return getBoundingBoxFieldBuilder().getBuilder();
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
public com.google.cloud.vision.v1.BoundingPolyOrBuilder getBoundingBoxOrBuilder() {
if (boundingBoxBuilder_ != null) {
return boundingBoxBuilder_.getMessageOrBuilder();
} else {
return boundingBox_ == null ?
com.google.cloud.vision.v1.BoundingPoly.getDefaultInstance() : boundingBox_;
}
}
/**
*
* The bounding box for the paragraph.
* The vertices are in the order of top-left, top-right, bottom-right,
* bottom-left. When a rotation of the bounding box is detected the rotation
* is represented as around the top-left corner as defined when the text is
* read in the 'natural' orientation.
* For example:
* * when the text is horizontal it might look like:
* 0----1
* | |
* 3----2
* * when it's rotated 180 degrees around the top-left corner it becomes:
* 2----3
* | |
* 1----0
* and the vertice order will still be (0, 1, 2, 3).
*
*
* .google.cloud.vision.v1.BoundingPoly bounding_box = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.vision.v1.BoundingPoly, com.google.cloud.vision.v1.BoundingPoly.Builder, com.google.cloud.vision.v1.BoundingPolyOrBuilder>
getBoundingBoxFieldBuilder() {
if (boundingBoxBuilder_ == null) {
boundingBoxBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.vision.v1.BoundingPoly, com.google.cloud.vision.v1.BoundingPoly.Builder, com.google.cloud.vision.v1.BoundingPolyOrBuilder>(
getBoundingBox(),
getParentForChildren(),
isClean());
boundingBox_ = null;
}
return boundingBoxBuilder_;
}
private java.util.List words_ =
java.util.Collections.emptyList();
private void ensureWordsIsMutable() {
if (!((bitField0_ & 0x00000004) == 0x00000004)) {
words_ = new java.util.ArrayList(words_);
bitField0_ |= 0x00000004;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.vision.v1.Word, com.google.cloud.vision.v1.Word.Builder, com.google.cloud.vision.v1.WordOrBuilder> wordsBuilder_;
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public java.util.List getWordsList() {
if (wordsBuilder_ == null) {
return java.util.Collections.unmodifiableList(words_);
} else {
return wordsBuilder_.getMessageList();
}
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public int getWordsCount() {
if (wordsBuilder_ == null) {
return words_.size();
} else {
return wordsBuilder_.getCount();
}
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.Word getWords(int index) {
if (wordsBuilder_ == null) {
return words_.get(index);
} else {
return wordsBuilder_.getMessage(index);
}
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder setWords(
int index, com.google.cloud.vision.v1.Word value) {
if (wordsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWordsIsMutable();
words_.set(index, value);
onChanged();
} else {
wordsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder setWords(
int index, com.google.cloud.vision.v1.Word.Builder builderForValue) {
if (wordsBuilder_ == null) {
ensureWordsIsMutable();
words_.set(index, builderForValue.build());
onChanged();
} else {
wordsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder addWords(com.google.cloud.vision.v1.Word value) {
if (wordsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWordsIsMutable();
words_.add(value);
onChanged();
} else {
wordsBuilder_.addMessage(value);
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder addWords(
int index, com.google.cloud.vision.v1.Word value) {
if (wordsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureWordsIsMutable();
words_.add(index, value);
onChanged();
} else {
wordsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder addWords(
com.google.cloud.vision.v1.Word.Builder builderForValue) {
if (wordsBuilder_ == null) {
ensureWordsIsMutable();
words_.add(builderForValue.build());
onChanged();
} else {
wordsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder addWords(
int index, com.google.cloud.vision.v1.Word.Builder builderForValue) {
if (wordsBuilder_ == null) {
ensureWordsIsMutable();
words_.add(index, builderForValue.build());
onChanged();
} else {
wordsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder addAllWords(
java.lang.Iterable extends com.google.cloud.vision.v1.Word> values) {
if (wordsBuilder_ == null) {
ensureWordsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, words_);
onChanged();
} else {
wordsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder clearWords() {
if (wordsBuilder_ == null) {
words_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
} else {
wordsBuilder_.clear();
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public Builder removeWords(int index) {
if (wordsBuilder_ == null) {
ensureWordsIsMutable();
words_.remove(index);
onChanged();
} else {
wordsBuilder_.remove(index);
}
return this;
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.Word.Builder getWordsBuilder(
int index) {
return getWordsFieldBuilder().getBuilder(index);
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.WordOrBuilder getWordsOrBuilder(
int index) {
if (wordsBuilder_ == null) {
return words_.get(index); } else {
return wordsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public java.util.List extends com.google.cloud.vision.v1.WordOrBuilder>
getWordsOrBuilderList() {
if (wordsBuilder_ != null) {
return wordsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(words_);
}
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.Word.Builder addWordsBuilder() {
return getWordsFieldBuilder().addBuilder(
com.google.cloud.vision.v1.Word.getDefaultInstance());
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public com.google.cloud.vision.v1.Word.Builder addWordsBuilder(
int index) {
return getWordsFieldBuilder().addBuilder(
index, com.google.cloud.vision.v1.Word.getDefaultInstance());
}
/**
*
* List of words in this paragraph.
*
*
* repeated .google.cloud.vision.v1.Word words = 3;
*/
public java.util.List
getWordsBuilderList() {
return getWordsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.vision.v1.Word, com.google.cloud.vision.v1.Word.Builder, com.google.cloud.vision.v1.WordOrBuilder>
getWordsFieldBuilder() {
if (wordsBuilder_ == null) {
wordsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.google.cloud.vision.v1.Word, com.google.cloud.vision.v1.Word.Builder, com.google.cloud.vision.v1.WordOrBuilder>(
words_,
((bitField0_ & 0x00000004) == 0x00000004),
getParentForChildren(),
isClean());
words_ = null;
}
return wordsBuilder_;
}
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return this;
}
// @@protoc_insertion_point(builder_scope:google.cloud.vision.v1.Paragraph)
}
// @@protoc_insertion_point(class_scope:google.cloud.vision.v1.Paragraph)
private static final com.google.cloud.vision.v1.Paragraph DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.vision.v1.Paragraph();
}
public static com.google.cloud.vision.v1.Paragraph getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
public Paragraph parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Paragraph(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public com.google.cloud.vision.v1.Paragraph getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy