All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation Maven / Gradle / Ivy

There is a newer version: 0.136.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/vision/v1p3beta1/image_annotator.proto

// Protobuf Java Version: 3.25.4
package com.google.cloud.vision.v1p3beta1;

/**
 *
 *
 * 
 * Set of detected objects with bounding boxes.
 * 
* * Protobuf type {@code google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation} */ public final class LocalizedObjectAnnotation extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) LocalizedObjectAnnotationOrBuilder { private static final long serialVersionUID = 0L; // Use LocalizedObjectAnnotation.newBuilder() to construct. private LocalizedObjectAnnotation(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private LocalizedObjectAnnotation() { mid_ = ""; languageCode_ = ""; name_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new LocalizedObjectAnnotation(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_LocalizedObjectAnnotation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_LocalizedObjectAnnotation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.class, com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.Builder.class); } private int bitField0_; public static final int MID_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object mid_ = ""; /** * * *
   * Object ID that should align with EntityAnnotation mid.
   * 
* * string mid = 1; * * @return The mid. */ @java.lang.Override public java.lang.String getMid() { java.lang.Object ref = mid_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); mid_ = s; return s; } } /** * * *
   * Object ID that should align with EntityAnnotation mid.
   * 
* * string mid = 1; * * @return The bytes for mid. */ @java.lang.Override public com.google.protobuf.ByteString getMidBytes() { java.lang.Object ref = mid_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); mid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int LANGUAGE_CODE_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object languageCode_ = ""; /** * * *
   * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
   * information, see
   * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
   * 
* * string language_code = 2; * * @return The languageCode. */ @java.lang.Override public java.lang.String getLanguageCode() { java.lang.Object ref = languageCode_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); languageCode_ = s; return s; } } /** * * *
   * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
   * information, see
   * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
   * 
* * string language_code = 2; * * @return The bytes for languageCode. */ @java.lang.Override public com.google.protobuf.ByteString getLanguageCodeBytes() { java.lang.Object ref = languageCode_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); languageCode_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int NAME_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object name_ = ""; /** * * *
   * Object name, expressed in its `language_code` language.
   * 
* * string name = 3; * * @return The name. */ @java.lang.Override public java.lang.String getName() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } } /** * * *
   * Object name, expressed in its `language_code` language.
   * 
* * string name = 3; * * @return The bytes for name. */ @java.lang.Override public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int SCORE_FIELD_NUMBER = 4; private float score_ = 0F; /** * * *
   * Score of the result. Range [0, 1].
   * 
* * float score = 4; * * @return The score. */ @java.lang.Override public float getScore() { return score_; } public static final int BOUNDING_POLY_FIELD_NUMBER = 5; private com.google.cloud.vision.v1p3beta1.BoundingPoly boundingPoly_; /** * * *
   * Image region to which this object belongs. This must be populated.
   * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; * * @return Whether the boundingPoly field is set. */ @java.lang.Override public boolean hasBoundingPoly() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * Image region to which this object belongs. This must be populated.
   * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; * * @return The boundingPoly. */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.BoundingPoly getBoundingPoly() { return boundingPoly_ == null ? com.google.cloud.vision.v1p3beta1.BoundingPoly.getDefaultInstance() : boundingPoly_; } /** * * *
   * Image region to which this object belongs. This must be populated.
   * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.BoundingPolyOrBuilder getBoundingPolyOrBuilder() { return boundingPoly_ == null ? com.google.cloud.vision.v1p3beta1.BoundingPoly.getDefaultInstance() : boundingPoly_; } private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } @java.lang.Override public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mid_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, mid_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(languageCode_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, languageCode_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, name_); } if (java.lang.Float.floatToRawIntBits(score_) != 0) { output.writeFloat(4, score_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(5, getBoundingPoly()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(mid_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, mid_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(languageCode_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, languageCode_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(name_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, name_); } if (java.lang.Float.floatToRawIntBits(score_) != 0) { size += com.google.protobuf.CodedOutputStream.computeFloatSize(4, score_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getBoundingPoly()); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation)) { return super.equals(obj); } com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation other = (com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) obj; if (!getMid().equals(other.getMid())) return false; if (!getLanguageCode().equals(other.getLanguageCode())) return false; if (!getName().equals(other.getName())) return false; if (java.lang.Float.floatToIntBits(getScore()) != java.lang.Float.floatToIntBits(other.getScore())) return false; if (hasBoundingPoly() != other.hasBoundingPoly()) return false; if (hasBoundingPoly()) { if (!getBoundingPoly().equals(other.getBoundingPoly())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + MID_FIELD_NUMBER; hash = (53 * hash) + getMid().hashCode(); hash = (37 * hash) + LANGUAGE_CODE_FIELD_NUMBER; hash = (53 * hash) + getLanguageCode().hashCode(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); hash = (37 * hash) + SCORE_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits(getScore()); if (hasBoundingPoly()) { hash = (37 * hash) + BOUNDING_POLY_FIELD_NUMBER; hash = (53 * hash) + getBoundingPoly().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation 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.v1p3beta1.LocalizedObjectAnnotation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation 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.v1p3beta1.LocalizedObjectAnnotation parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation 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.v1p3beta1.LocalizedObjectAnnotation parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException( PARSER, input, extensionRegistry); } @java.lang.Override public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder( com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } @java.lang.Override 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; } /** * * *
   * Set of detected objects with bounding boxes.
   * 
* * Protobuf type {@code google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_LocalizedObjectAnnotation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_LocalizedObjectAnnotation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.class, com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.Builder.class); } // Construct using com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getBoundingPolyFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; mid_ = ""; languageCode_ = ""; name_ = ""; score_ = 0F; boundingPoly_ = null; if (boundingPolyBuilder_ != null) { boundingPolyBuilder_.dispose(); boundingPolyBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_LocalizedObjectAnnotation_descriptor; } @java.lang.Override public com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation getDefaultInstanceForType() { return com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.getDefaultInstance(); } @java.lang.Override public com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation build() { com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation buildPartial() { com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation result = new com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.mid_ = mid_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.languageCode_ = languageCode_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.name_ = name_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.score_ = score_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000010) != 0)) { result.boundingPoly_ = boundingPolyBuilder_ == null ? boundingPoly_ : boundingPolyBuilder_.build(); to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) { return mergeFrom((com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation other) { if (other == com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation.getDefaultInstance()) return this; if (!other.getMid().isEmpty()) { mid_ = other.mid_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getLanguageCode().isEmpty()) { languageCode_ = other.languageCode_; bitField0_ |= 0x00000002; onChanged(); } if (!other.getName().isEmpty()) { name_ = other.name_; bitField0_ |= 0x00000004; onChanged(); } if (other.getScore() != 0F) { setScore(other.getScore()); } if (other.hasBoundingPoly()) { mergeBoundingPoly(other.getBoundingPoly()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { mid_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { languageCode_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { name_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 37: { score_ = input.readFloat(); bitField0_ |= 0x00000008; break; } // case 37 case 42: { input.readMessage(getBoundingPolyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000010; break; } // case 42 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private java.lang.Object mid_ = ""; /** * * *
     * Object ID that should align with EntityAnnotation mid.
     * 
* * string mid = 1; * * @return The mid. */ public java.lang.String getMid() { java.lang.Object ref = mid_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); mid_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Object ID that should align with EntityAnnotation mid.
     * 
* * string mid = 1; * * @return The bytes for mid. */ public com.google.protobuf.ByteString getMidBytes() { java.lang.Object ref = mid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); mid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Object ID that should align with EntityAnnotation mid.
     * 
* * string mid = 1; * * @param value The mid to set. * @return This builder for chaining. */ public Builder setMid(java.lang.String value) { if (value == null) { throw new NullPointerException(); } mid_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Object ID that should align with EntityAnnotation mid.
     * 
* * string mid = 1; * * @return This builder for chaining. */ public Builder clearMid() { mid_ = getDefaultInstance().getMid(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Object ID that should align with EntityAnnotation mid.
     * 
* * string mid = 1; * * @param value The bytes for mid to set. * @return This builder for chaining. */ public Builder setMidBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); mid_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object languageCode_ = ""; /** * * *
     * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
     * information, see
     * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
     * 
* * string language_code = 2; * * @return The languageCode. */ public java.lang.String getLanguageCode() { java.lang.Object ref = languageCode_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); languageCode_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
     * information, see
     * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
     * 
* * string language_code = 2; * * @return The bytes for languageCode. */ public com.google.protobuf.ByteString getLanguageCodeBytes() { java.lang.Object ref = languageCode_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); languageCode_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
     * information, see
     * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
     * 
* * string language_code = 2; * * @param value The languageCode to set. * @return This builder for chaining. */ public Builder setLanguageCode(java.lang.String value) { if (value == null) { throw new NullPointerException(); } languageCode_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
     * information, see
     * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
     * 
* * string language_code = 2; * * @return This builder for chaining. */ public Builder clearLanguageCode() { languageCode_ = getDefaultInstance().getLanguageCode(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * The BCP-47 language code, such as "en-US" or "sr-Latn". For more
     * information, see
     * http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
     * 
* * string language_code = 2; * * @param value The bytes for languageCode to set. * @return This builder for chaining. */ public Builder setLanguageCodeBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); languageCode_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object name_ = ""; /** * * *
     * Object name, expressed in its `language_code` language.
     * 
* * string name = 3; * * @return The name. */ public java.lang.String getName() { java.lang.Object ref = name_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); name_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Object name, expressed in its `language_code` language.
     * 
* * string name = 3; * * @return The bytes for name. */ public com.google.protobuf.ByteString getNameBytes() { java.lang.Object ref = name_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); name_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Object name, expressed in its `language_code` language.
     * 
* * string name = 3; * * @param value The name to set. * @return This builder for chaining. */ public Builder setName(java.lang.String value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Object name, expressed in its `language_code` language.
     * 
* * string name = 3; * * @return This builder for chaining. */ public Builder clearName() { name_ = getDefaultInstance().getName(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Object name, expressed in its `language_code` language.
     * 
* * string name = 3; * * @param value The bytes for name to set. * @return This builder for chaining. */ public Builder setNameBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); name_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private float score_; /** * * *
     * Score of the result. Range [0, 1].
     * 
* * float score = 4; * * @return The score. */ @java.lang.Override public float getScore() { return score_; } /** * * *
     * Score of the result. Range [0, 1].
     * 
* * float score = 4; * * @param value The score to set. * @return This builder for chaining. */ public Builder setScore(float value) { score_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * Score of the result. Range [0, 1].
     * 
* * float score = 4; * * @return This builder for chaining. */ public Builder clearScore() { bitField0_ = (bitField0_ & ~0x00000008); score_ = 0F; onChanged(); return this; } private com.google.cloud.vision.v1p3beta1.BoundingPoly boundingPoly_; private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.vision.v1p3beta1.BoundingPoly, com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder, com.google.cloud.vision.v1p3beta1.BoundingPolyOrBuilder> boundingPolyBuilder_; /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; * * @return Whether the boundingPoly field is set. */ public boolean hasBoundingPoly() { return ((bitField0_ & 0x00000010) != 0); } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; * * @return The boundingPoly. */ public com.google.cloud.vision.v1p3beta1.BoundingPoly getBoundingPoly() { if (boundingPolyBuilder_ == null) { return boundingPoly_ == null ? com.google.cloud.vision.v1p3beta1.BoundingPoly.getDefaultInstance() : boundingPoly_; } else { return boundingPolyBuilder_.getMessage(); } } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ public Builder setBoundingPoly(com.google.cloud.vision.v1p3beta1.BoundingPoly value) { if (boundingPolyBuilder_ == null) { if (value == null) { throw new NullPointerException(); } boundingPoly_ = value; } else { boundingPolyBuilder_.setMessage(value); } bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ public Builder setBoundingPoly( com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder builderForValue) { if (boundingPolyBuilder_ == null) { boundingPoly_ = builderForValue.build(); } else { boundingPolyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ public Builder mergeBoundingPoly(com.google.cloud.vision.v1p3beta1.BoundingPoly value) { if (boundingPolyBuilder_ == null) { if (((bitField0_ & 0x00000010) != 0) && boundingPoly_ != null && boundingPoly_ != com.google.cloud.vision.v1p3beta1.BoundingPoly.getDefaultInstance()) { getBoundingPolyBuilder().mergeFrom(value); } else { boundingPoly_ = value; } } else { boundingPolyBuilder_.mergeFrom(value); } if (boundingPoly_ != null) { bitField0_ |= 0x00000010; onChanged(); } return this; } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ public Builder clearBoundingPoly() { bitField0_ = (bitField0_ & ~0x00000010); boundingPoly_ = null; if (boundingPolyBuilder_ != null) { boundingPolyBuilder_.dispose(); boundingPolyBuilder_ = null; } onChanged(); return this; } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ public com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder getBoundingPolyBuilder() { bitField0_ |= 0x00000010; onChanged(); return getBoundingPolyFieldBuilder().getBuilder(); } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ public com.google.cloud.vision.v1p3beta1.BoundingPolyOrBuilder getBoundingPolyOrBuilder() { if (boundingPolyBuilder_ != null) { return boundingPolyBuilder_.getMessageOrBuilder(); } else { return boundingPoly_ == null ? com.google.cloud.vision.v1p3beta1.BoundingPoly.getDefaultInstance() : boundingPoly_; } } /** * * *
     * Image region to which this object belongs. This must be populated.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 5; */ private com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.vision.v1p3beta1.BoundingPoly, com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder, com.google.cloud.vision.v1p3beta1.BoundingPolyOrBuilder> getBoundingPolyFieldBuilder() { if (boundingPolyBuilder_ == null) { boundingPolyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.cloud.vision.v1p3beta1.BoundingPoly, com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder, com.google.cloud.vision.v1p3beta1.BoundingPolyOrBuilder>( getBoundingPoly(), getParentForChildren(), isClean()); boundingPoly_ = null; } return boundingPolyBuilder_; } @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); } @java.lang.Override public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) } // @@protoc_insertion_point(class_scope:google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation) private static final com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation(); } public static com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public LocalizedObjectAnnotation parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.google.cloud.vision.v1p3beta1.LocalizedObjectAnnotation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy