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

com.google.cloud.vision.v1p3beta1.EntityAnnotation 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 entity features.
 * 
* * Protobuf type {@code google.cloud.vision.v1p3beta1.EntityAnnotation} */ public final class EntityAnnotation extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.vision.v1p3beta1.EntityAnnotation) EntityAnnotationOrBuilder { private static final long serialVersionUID = 0L; // Use EntityAnnotation.newBuilder() to construct. private EntityAnnotation(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private EntityAnnotation() { mid_ = ""; locale_ = ""; description_ = ""; locations_ = java.util.Collections.emptyList(); properties_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new EntityAnnotation(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_EntityAnnotation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_EntityAnnotation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.vision.v1p3beta1.EntityAnnotation.class, com.google.cloud.vision.v1p3beta1.EntityAnnotation.Builder.class); } private int bitField0_; public static final int MID_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object mid_ = ""; /** * * *
   * Opaque entity ID. Some IDs may be available in
   * [Google Knowledge Graph Search
   * API](https://developers.google.com/knowledge-graph/).
   * 
* * 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; } } /** * * *
   * Opaque entity ID. Some IDs may be available in
   * [Google Knowledge Graph Search
   * API](https://developers.google.com/knowledge-graph/).
   * 
* * 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 LOCALE_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object locale_ = ""; /** * * *
   * The language code for the locale in which the entity textual
   * `description` is expressed.
   * 
* * string locale = 2; * * @return The locale. */ @java.lang.Override public java.lang.String getLocale() { java.lang.Object ref = locale_; 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(); locale_ = s; return s; } } /** * * *
   * The language code for the locale in which the entity textual
   * `description` is expressed.
   * 
* * string locale = 2; * * @return The bytes for locale. */ @java.lang.Override public com.google.protobuf.ByteString getLocaleBytes() { java.lang.Object ref = locale_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); locale_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int DESCRIPTION_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object description_ = ""; /** * * *
   * Entity textual description, expressed in its `locale` language.
   * 
* * string description = 3; * * @return The description. */ @java.lang.Override public java.lang.String getDescription() { java.lang.Object ref = description_; 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(); description_ = s; return s; } } /** * * *
   * Entity textual description, expressed in its `locale` language.
   * 
* * string description = 3; * * @return The bytes for description. */ @java.lang.Override public com.google.protobuf.ByteString getDescriptionBytes() { java.lang.Object ref = description_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); description_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int SCORE_FIELD_NUMBER = 4; private float score_ = 0F; /** * * *
   * Overall 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 CONFIDENCE_FIELD_NUMBER = 5; private float confidence_ = 0F; /** * * *
   * **Deprecated. Use `score` instead.**
   * The accuracy of the entity detection in an image.
   * For example, for an image in which the "Eiffel Tower" entity is detected,
   * this field represents the confidence that there is a tower in the query
   * image. Range [0, 1].
   * 
* * float confidence = 5; * * @return The confidence. */ @java.lang.Override public float getConfidence() { return confidence_; } public static final int TOPICALITY_FIELD_NUMBER = 6; private float topicality_ = 0F; /** * * *
   * The relevancy of the ICA (Image Content Annotation) label to the
   * image. For example, the relevancy of "tower" is likely higher to an image
   * containing the detected "Eiffel Tower" than to an image containing a
   * detected distant towering building, even though the confidence that
   * there is a tower in each image may be the same. Range [0, 1].
   * 
* * float topicality = 6; * * @return The topicality. */ @java.lang.Override public float getTopicality() { return topicality_; } public static final int BOUNDING_POLY_FIELD_NUMBER = 7; private com.google.cloud.vision.v1p3beta1.BoundingPoly boundingPoly_; /** * * *
   * Image region to which this entity belongs. Not produced
   * for `LABEL_DETECTION` features.
   * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; * * @return Whether the boundingPoly field is set. */ @java.lang.Override public boolean hasBoundingPoly() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * Image region to which this entity belongs. Not produced
   * for `LABEL_DETECTION` features.
   * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; * * @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 entity belongs. Not produced
   * for `LABEL_DETECTION` features.
   * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.BoundingPolyOrBuilder getBoundingPolyOrBuilder() { return boundingPoly_ == null ? com.google.cloud.vision.v1p3beta1.BoundingPoly.getDefaultInstance() : boundingPoly_; } public static final int LOCATIONS_FIELD_NUMBER = 8; @SuppressWarnings("serial") private java.util.List locations_; /** * * *
   * The location information for the detected entity. Multiple
   * `LocationInfo` elements can be present because one location may
   * indicate the location of the scene in the image, and another location
   * may indicate the location of the place where the image was taken.
   * Location information is usually present for landmarks.
   * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ @java.lang.Override public java.util.List getLocationsList() { return locations_; } /** * * *
   * The location information for the detected entity. Multiple
   * `LocationInfo` elements can be present because one location may
   * indicate the location of the scene in the image, and another location
   * may indicate the location of the place where the image was taken.
   * Location information is usually present for landmarks.
   * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ @java.lang.Override public java.util.List getLocationsOrBuilderList() { return locations_; } /** * * *
   * The location information for the detected entity. Multiple
   * `LocationInfo` elements can be present because one location may
   * indicate the location of the scene in the image, and another location
   * may indicate the location of the place where the image was taken.
   * Location information is usually present for landmarks.
   * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ @java.lang.Override public int getLocationsCount() { return locations_.size(); } /** * * *
   * The location information for the detected entity. Multiple
   * `LocationInfo` elements can be present because one location may
   * indicate the location of the scene in the image, and another location
   * may indicate the location of the place where the image was taken.
   * Location information is usually present for landmarks.
   * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.LocationInfo getLocations(int index) { return locations_.get(index); } /** * * *
   * The location information for the detected entity. Multiple
   * `LocationInfo` elements can be present because one location may
   * indicate the location of the scene in the image, and another location
   * may indicate the location of the place where the image was taken.
   * Location information is usually present for landmarks.
   * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.LocationInfoOrBuilder getLocationsOrBuilder(int index) { return locations_.get(index); } public static final int PROPERTIES_FIELD_NUMBER = 9; @SuppressWarnings("serial") private java.util.List properties_; /** * * *
   * Some entities may have optional user-supplied `Property` (name/value)
   * fields, such a score or string that qualifies the entity.
   * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ @java.lang.Override public java.util.List getPropertiesList() { return properties_; } /** * * *
   * Some entities may have optional user-supplied `Property` (name/value)
   * fields, such a score or string that qualifies the entity.
   * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ @java.lang.Override public java.util.List getPropertiesOrBuilderList() { return properties_; } /** * * *
   * Some entities may have optional user-supplied `Property` (name/value)
   * fields, such a score or string that qualifies the entity.
   * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ @java.lang.Override public int getPropertiesCount() { return properties_.size(); } /** * * *
   * Some entities may have optional user-supplied `Property` (name/value)
   * fields, such a score or string that qualifies the entity.
   * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.Property getProperties(int index) { return properties_.get(index); } /** * * *
   * Some entities may have optional user-supplied `Property` (name/value)
   * fields, such a score or string that qualifies the entity.
   * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ @java.lang.Override public com.google.cloud.vision.v1p3beta1.PropertyOrBuilder getPropertiesOrBuilder(int index) { return properties_.get(index); } 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(locale_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, locale_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(description_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, description_); } if (java.lang.Float.floatToRawIntBits(score_) != 0) { output.writeFloat(4, score_); } if (java.lang.Float.floatToRawIntBits(confidence_) != 0) { output.writeFloat(5, confidence_); } if (java.lang.Float.floatToRawIntBits(topicality_) != 0) { output.writeFloat(6, topicality_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(7, getBoundingPoly()); } for (int i = 0; i < locations_.size(); i++) { output.writeMessage(8, locations_.get(i)); } for (int i = 0; i < properties_.size(); i++) { output.writeMessage(9, properties_.get(i)); } 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(locale_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, locale_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(description_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, description_); } if (java.lang.Float.floatToRawIntBits(score_) != 0) { size += com.google.protobuf.CodedOutputStream.computeFloatSize(4, score_); } if (java.lang.Float.floatToRawIntBits(confidence_) != 0) { size += com.google.protobuf.CodedOutputStream.computeFloatSize(5, confidence_); } if (java.lang.Float.floatToRawIntBits(topicality_) != 0) { size += com.google.protobuf.CodedOutputStream.computeFloatSize(6, topicality_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(7, getBoundingPoly()); } for (int i = 0; i < locations_.size(); i++) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(8, locations_.get(i)); } for (int i = 0; i < properties_.size(); i++) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(9, properties_.get(i)); } 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.EntityAnnotation)) { return super.equals(obj); } com.google.cloud.vision.v1p3beta1.EntityAnnotation other = (com.google.cloud.vision.v1p3beta1.EntityAnnotation) obj; if (!getMid().equals(other.getMid())) return false; if (!getLocale().equals(other.getLocale())) return false; if (!getDescription().equals(other.getDescription())) return false; if (java.lang.Float.floatToIntBits(getScore()) != java.lang.Float.floatToIntBits(other.getScore())) return false; if (java.lang.Float.floatToIntBits(getConfidence()) != java.lang.Float.floatToIntBits(other.getConfidence())) return false; if (java.lang.Float.floatToIntBits(getTopicality()) != java.lang.Float.floatToIntBits(other.getTopicality())) return false; if (hasBoundingPoly() != other.hasBoundingPoly()) return false; if (hasBoundingPoly()) { if (!getBoundingPoly().equals(other.getBoundingPoly())) return false; } if (!getLocationsList().equals(other.getLocationsList())) return false; if (!getPropertiesList().equals(other.getPropertiesList())) 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) + LOCALE_FIELD_NUMBER; hash = (53 * hash) + getLocale().hashCode(); hash = (37 * hash) + DESCRIPTION_FIELD_NUMBER; hash = (53 * hash) + getDescription().hashCode(); hash = (37 * hash) + SCORE_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits(getScore()); hash = (37 * hash) + CONFIDENCE_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits(getConfidence()); hash = (37 * hash) + TOPICALITY_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits(getTopicality()); if (hasBoundingPoly()) { hash = (37 * hash) + BOUNDING_POLY_FIELD_NUMBER; hash = (53 * hash) + getBoundingPoly().hashCode(); } if (getLocationsCount() > 0) { hash = (37 * hash) + LOCATIONS_FIELD_NUMBER; hash = (53 * hash) + getLocationsList().hashCode(); } if (getPropertiesCount() > 0) { hash = (37 * hash) + PROPERTIES_FIELD_NUMBER; hash = (53 * hash) + getPropertiesList().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation 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.EntityAnnotation parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation 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.EntityAnnotation parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation 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.EntityAnnotation parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation 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.EntityAnnotation parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation 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.EntityAnnotation 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.EntityAnnotation 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.EntityAnnotation 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 entity features.
   * 
* * Protobuf type {@code google.cloud.vision.v1p3beta1.EntityAnnotation} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.vision.v1p3beta1.EntityAnnotation) com.google.cloud.vision.v1p3beta1.EntityAnnotationOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_EntityAnnotation_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.vision.v1p3beta1.ImageAnnotatorProto .internal_static_google_cloud_vision_v1p3beta1_EntityAnnotation_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.vision.v1p3beta1.EntityAnnotation.class, com.google.cloud.vision.v1p3beta1.EntityAnnotation.Builder.class); } // Construct using com.google.cloud.vision.v1p3beta1.EntityAnnotation.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(); getLocationsFieldBuilder(); getPropertiesFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; mid_ = ""; locale_ = ""; description_ = ""; score_ = 0F; confidence_ = 0F; topicality_ = 0F; boundingPoly_ = null; if (boundingPolyBuilder_ != null) { boundingPolyBuilder_.dispose(); boundingPolyBuilder_ = null; } if (locationsBuilder_ == null) { locations_ = java.util.Collections.emptyList(); } else { locations_ = null; locationsBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000080); if (propertiesBuilder_ == null) { properties_ = java.util.Collections.emptyList(); } else { properties_ = null; propertiesBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000100); 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_EntityAnnotation_descriptor; } @java.lang.Override public com.google.cloud.vision.v1p3beta1.EntityAnnotation getDefaultInstanceForType() { return com.google.cloud.vision.v1p3beta1.EntityAnnotation.getDefaultInstance(); } @java.lang.Override public com.google.cloud.vision.v1p3beta1.EntityAnnotation build() { com.google.cloud.vision.v1p3beta1.EntityAnnotation result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.vision.v1p3beta1.EntityAnnotation buildPartial() { com.google.cloud.vision.v1p3beta1.EntityAnnotation result = new com.google.cloud.vision.v1p3beta1.EntityAnnotation(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields( com.google.cloud.vision.v1p3beta1.EntityAnnotation result) { if (locationsBuilder_ == null) { if (((bitField0_ & 0x00000080) != 0)) { locations_ = java.util.Collections.unmodifiableList(locations_); bitField0_ = (bitField0_ & ~0x00000080); } result.locations_ = locations_; } else { result.locations_ = locationsBuilder_.build(); } if (propertiesBuilder_ == null) { if (((bitField0_ & 0x00000100) != 0)) { properties_ = java.util.Collections.unmodifiableList(properties_); bitField0_ = (bitField0_ & ~0x00000100); } result.properties_ = properties_; } else { result.properties_ = propertiesBuilder_.build(); } } private void buildPartial0(com.google.cloud.vision.v1p3beta1.EntityAnnotation result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.mid_ = mid_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.locale_ = locale_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.description_ = description_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.score_ = score_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.confidence_ = confidence_; } if (((from_bitField0_ & 0x00000020) != 0)) { result.topicality_ = topicality_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000040) != 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.EntityAnnotation) { return mergeFrom((com.google.cloud.vision.v1p3beta1.EntityAnnotation) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.vision.v1p3beta1.EntityAnnotation other) { if (other == com.google.cloud.vision.v1p3beta1.EntityAnnotation.getDefaultInstance()) return this; if (!other.getMid().isEmpty()) { mid_ = other.mid_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getLocale().isEmpty()) { locale_ = other.locale_; bitField0_ |= 0x00000002; onChanged(); } if (!other.getDescription().isEmpty()) { description_ = other.description_; bitField0_ |= 0x00000004; onChanged(); } if (other.getScore() != 0F) { setScore(other.getScore()); } if (other.getConfidence() != 0F) { setConfidence(other.getConfidence()); } if (other.getTopicality() != 0F) { setTopicality(other.getTopicality()); } if (other.hasBoundingPoly()) { mergeBoundingPoly(other.getBoundingPoly()); } if (locationsBuilder_ == null) { if (!other.locations_.isEmpty()) { if (locations_.isEmpty()) { locations_ = other.locations_; bitField0_ = (bitField0_ & ~0x00000080); } else { ensureLocationsIsMutable(); locations_.addAll(other.locations_); } onChanged(); } } else { if (!other.locations_.isEmpty()) { if (locationsBuilder_.isEmpty()) { locationsBuilder_.dispose(); locationsBuilder_ = null; locations_ = other.locations_; bitField0_ = (bitField0_ & ~0x00000080); locationsBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getLocationsFieldBuilder() : null; } else { locationsBuilder_.addAllMessages(other.locations_); } } } if (propertiesBuilder_ == null) { if (!other.properties_.isEmpty()) { if (properties_.isEmpty()) { properties_ = other.properties_; bitField0_ = (bitField0_ & ~0x00000100); } else { ensurePropertiesIsMutable(); properties_.addAll(other.properties_); } onChanged(); } } else { if (!other.properties_.isEmpty()) { if (propertiesBuilder_.isEmpty()) { propertiesBuilder_.dispose(); propertiesBuilder_ = null; properties_ = other.properties_; bitField0_ = (bitField0_ & ~0x00000100); propertiesBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getPropertiesFieldBuilder() : null; } else { propertiesBuilder_.addAllMessages(other.properties_); } } } 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: { locale_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { description_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 37: { score_ = input.readFloat(); bitField0_ |= 0x00000008; break; } // case 37 case 45: { confidence_ = input.readFloat(); bitField0_ |= 0x00000010; break; } // case 45 case 53: { topicality_ = input.readFloat(); bitField0_ |= 0x00000020; break; } // case 53 case 58: { input.readMessage(getBoundingPolyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000040; break; } // case 58 case 66: { com.google.cloud.vision.v1p3beta1.LocationInfo m = input.readMessage( com.google.cloud.vision.v1p3beta1.LocationInfo.parser(), extensionRegistry); if (locationsBuilder_ == null) { ensureLocationsIsMutable(); locations_.add(m); } else { locationsBuilder_.addMessage(m); } break; } // case 66 case 74: { com.google.cloud.vision.v1p3beta1.Property m = input.readMessage( com.google.cloud.vision.v1p3beta1.Property.parser(), extensionRegistry); if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.add(m); } else { propertiesBuilder_.addMessage(m); } break; } // case 74 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_ = ""; /** * * *
     * Opaque entity ID. Some IDs may be available in
     * [Google Knowledge Graph Search
     * API](https://developers.google.com/knowledge-graph/).
     * 
* * 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; } } /** * * *
     * Opaque entity ID. Some IDs may be available in
     * [Google Knowledge Graph Search
     * API](https://developers.google.com/knowledge-graph/).
     * 
* * 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; } } /** * * *
     * Opaque entity ID. Some IDs may be available in
     * [Google Knowledge Graph Search
     * API](https://developers.google.com/knowledge-graph/).
     * 
* * 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; } /** * * *
     * Opaque entity ID. Some IDs may be available in
     * [Google Knowledge Graph Search
     * API](https://developers.google.com/knowledge-graph/).
     * 
* * string mid = 1; * * @return This builder for chaining. */ public Builder clearMid() { mid_ = getDefaultInstance().getMid(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Opaque entity ID. Some IDs may be available in
     * [Google Knowledge Graph Search
     * API](https://developers.google.com/knowledge-graph/).
     * 
* * 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 locale_ = ""; /** * * *
     * The language code for the locale in which the entity textual
     * `description` is expressed.
     * 
* * string locale = 2; * * @return The locale. */ public java.lang.String getLocale() { java.lang.Object ref = locale_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); locale_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The language code for the locale in which the entity textual
     * `description` is expressed.
     * 
* * string locale = 2; * * @return The bytes for locale. */ public com.google.protobuf.ByteString getLocaleBytes() { java.lang.Object ref = locale_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); locale_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The language code for the locale in which the entity textual
     * `description` is expressed.
     * 
* * string locale = 2; * * @param value The locale to set. * @return This builder for chaining. */ public Builder setLocale(java.lang.String value) { if (value == null) { throw new NullPointerException(); } locale_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * The language code for the locale in which the entity textual
     * `description` is expressed.
     * 
* * string locale = 2; * * @return This builder for chaining. */ public Builder clearLocale() { locale_ = getDefaultInstance().getLocale(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * The language code for the locale in which the entity textual
     * `description` is expressed.
     * 
* * string locale = 2; * * @param value The bytes for locale to set. * @return This builder for chaining. */ public Builder setLocaleBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); locale_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object description_ = ""; /** * * *
     * Entity textual description, expressed in its `locale` language.
     * 
* * string description = 3; * * @return The description. */ public java.lang.String getDescription() { java.lang.Object ref = description_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); description_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Entity textual description, expressed in its `locale` language.
     * 
* * string description = 3; * * @return The bytes for description. */ public com.google.protobuf.ByteString getDescriptionBytes() { java.lang.Object ref = description_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); description_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Entity textual description, expressed in its `locale` language.
     * 
* * string description = 3; * * @param value The description to set. * @return This builder for chaining. */ public Builder setDescription(java.lang.String value) { if (value == null) { throw new NullPointerException(); } description_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Entity textual description, expressed in its `locale` language.
     * 
* * string description = 3; * * @return This builder for chaining. */ public Builder clearDescription() { description_ = getDefaultInstance().getDescription(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Entity textual description, expressed in its `locale` language.
     * 
* * string description = 3; * * @param value The bytes for description to set. * @return This builder for chaining. */ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); description_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private float score_; /** * * *
     * Overall score of the result. Range [0, 1].
     * 
* * float score = 4; * * @return The score. */ @java.lang.Override public float getScore() { return score_; } /** * * *
     * Overall 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; } /** * * *
     * Overall 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 float confidence_; /** * * *
     * **Deprecated. Use `score` instead.**
     * The accuracy of the entity detection in an image.
     * For example, for an image in which the "Eiffel Tower" entity is detected,
     * this field represents the confidence that there is a tower in the query
     * image. Range [0, 1].
     * 
* * float confidence = 5; * * @return The confidence. */ @java.lang.Override public float getConfidence() { return confidence_; } /** * * *
     * **Deprecated. Use `score` instead.**
     * The accuracy of the entity detection in an image.
     * For example, for an image in which the "Eiffel Tower" entity is detected,
     * this field represents the confidence that there is a tower in the query
     * image. Range [0, 1].
     * 
* * float confidence = 5; * * @param value The confidence to set. * @return This builder for chaining. */ public Builder setConfidence(float value) { confidence_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * **Deprecated. Use `score` instead.**
     * The accuracy of the entity detection in an image.
     * For example, for an image in which the "Eiffel Tower" entity is detected,
     * this field represents the confidence that there is a tower in the query
     * image. Range [0, 1].
     * 
* * float confidence = 5; * * @return This builder for chaining. */ public Builder clearConfidence() { bitField0_ = (bitField0_ & ~0x00000010); confidence_ = 0F; onChanged(); return this; } private float topicality_; /** * * *
     * The relevancy of the ICA (Image Content Annotation) label to the
     * image. For example, the relevancy of "tower" is likely higher to an image
     * containing the detected "Eiffel Tower" than to an image containing a
     * detected distant towering building, even though the confidence that
     * there is a tower in each image may be the same. Range [0, 1].
     * 
* * float topicality = 6; * * @return The topicality. */ @java.lang.Override public float getTopicality() { return topicality_; } /** * * *
     * The relevancy of the ICA (Image Content Annotation) label to the
     * image. For example, the relevancy of "tower" is likely higher to an image
     * containing the detected "Eiffel Tower" than to an image containing a
     * detected distant towering building, even though the confidence that
     * there is a tower in each image may be the same. Range [0, 1].
     * 
* * float topicality = 6; * * @param value The topicality to set. * @return This builder for chaining. */ public Builder setTopicality(float value) { topicality_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** * * *
     * The relevancy of the ICA (Image Content Annotation) label to the
     * image. For example, the relevancy of "tower" is likely higher to an image
     * containing the detected "Eiffel Tower" than to an image containing a
     * detected distant towering building, even though the confidence that
     * there is a tower in each image may be the same. Range [0, 1].
     * 
* * float topicality = 6; * * @return This builder for chaining. */ public Builder clearTopicality() { bitField0_ = (bitField0_ & ~0x00000020); topicality_ = 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 entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; * * @return Whether the boundingPoly field is set. */ public boolean hasBoundingPoly() { return ((bitField0_ & 0x00000040) != 0); } /** * * *
     * Image region to which this entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; * * @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 entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ 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_ |= 0x00000040; onChanged(); return this; } /** * * *
     * Image region to which this entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ public Builder setBoundingPoly( com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder builderForValue) { if (boundingPolyBuilder_ == null) { boundingPoly_ = builderForValue.build(); } else { boundingPolyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000040; onChanged(); return this; } /** * * *
     * Image region to which this entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ public Builder mergeBoundingPoly(com.google.cloud.vision.v1p3beta1.BoundingPoly value) { if (boundingPolyBuilder_ == null) { if (((bitField0_ & 0x00000040) != 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_ |= 0x00000040; onChanged(); } return this; } /** * * *
     * Image region to which this entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ public Builder clearBoundingPoly() { bitField0_ = (bitField0_ & ~0x00000040); boundingPoly_ = null; if (boundingPolyBuilder_ != null) { boundingPolyBuilder_.dispose(); boundingPolyBuilder_ = null; } onChanged(); return this; } /** * * *
     * Image region to which this entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ public com.google.cloud.vision.v1p3beta1.BoundingPoly.Builder getBoundingPolyBuilder() { bitField0_ |= 0x00000040; onChanged(); return getBoundingPolyFieldBuilder().getBuilder(); } /** * * *
     * Image region to which this entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ 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 entity belongs. Not produced
     * for `LABEL_DETECTION` features.
     * 
* * .google.cloud.vision.v1p3beta1.BoundingPoly bounding_poly = 7; */ 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_; } private java.util.List locations_ = java.util.Collections.emptyList(); private void ensureLocationsIsMutable() { if (!((bitField0_ & 0x00000080) != 0)) { locations_ = new java.util.ArrayList(locations_); bitField0_ |= 0x00000080; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.vision.v1p3beta1.LocationInfo, com.google.cloud.vision.v1p3beta1.LocationInfo.Builder, com.google.cloud.vision.v1p3beta1.LocationInfoOrBuilder> locationsBuilder_; /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public java.util.List getLocationsList() { if (locationsBuilder_ == null) { return java.util.Collections.unmodifiableList(locations_); } else { return locationsBuilder_.getMessageList(); } } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public int getLocationsCount() { if (locationsBuilder_ == null) { return locations_.size(); } else { return locationsBuilder_.getCount(); } } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public com.google.cloud.vision.v1p3beta1.LocationInfo getLocations(int index) { if (locationsBuilder_ == null) { return locations_.get(index); } else { return locationsBuilder_.getMessage(index); } } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder setLocations(int index, com.google.cloud.vision.v1p3beta1.LocationInfo value) { if (locationsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureLocationsIsMutable(); locations_.set(index, value); onChanged(); } else { locationsBuilder_.setMessage(index, value); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder setLocations( int index, com.google.cloud.vision.v1p3beta1.LocationInfo.Builder builderForValue) { if (locationsBuilder_ == null) { ensureLocationsIsMutable(); locations_.set(index, builderForValue.build()); onChanged(); } else { locationsBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder addLocations(com.google.cloud.vision.v1p3beta1.LocationInfo value) { if (locationsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureLocationsIsMutable(); locations_.add(value); onChanged(); } else { locationsBuilder_.addMessage(value); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder addLocations(int index, com.google.cloud.vision.v1p3beta1.LocationInfo value) { if (locationsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureLocationsIsMutable(); locations_.add(index, value); onChanged(); } else { locationsBuilder_.addMessage(index, value); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder addLocations( com.google.cloud.vision.v1p3beta1.LocationInfo.Builder builderForValue) { if (locationsBuilder_ == null) { ensureLocationsIsMutable(); locations_.add(builderForValue.build()); onChanged(); } else { locationsBuilder_.addMessage(builderForValue.build()); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder addLocations( int index, com.google.cloud.vision.v1p3beta1.LocationInfo.Builder builderForValue) { if (locationsBuilder_ == null) { ensureLocationsIsMutable(); locations_.add(index, builderForValue.build()); onChanged(); } else { locationsBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder addAllLocations( java.lang.Iterable values) { if (locationsBuilder_ == null) { ensureLocationsIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, locations_); onChanged(); } else { locationsBuilder_.addAllMessages(values); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder clearLocations() { if (locationsBuilder_ == null) { locations_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000080); onChanged(); } else { locationsBuilder_.clear(); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public Builder removeLocations(int index) { if (locationsBuilder_ == null) { ensureLocationsIsMutable(); locations_.remove(index); onChanged(); } else { locationsBuilder_.remove(index); } return this; } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public com.google.cloud.vision.v1p3beta1.LocationInfo.Builder getLocationsBuilder(int index) { return getLocationsFieldBuilder().getBuilder(index); } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public com.google.cloud.vision.v1p3beta1.LocationInfoOrBuilder getLocationsOrBuilder( int index) { if (locationsBuilder_ == null) { return locations_.get(index); } else { return locationsBuilder_.getMessageOrBuilder(index); } } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public java.util.List getLocationsOrBuilderList() { if (locationsBuilder_ != null) { return locationsBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(locations_); } } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public com.google.cloud.vision.v1p3beta1.LocationInfo.Builder addLocationsBuilder() { return getLocationsFieldBuilder() .addBuilder(com.google.cloud.vision.v1p3beta1.LocationInfo.getDefaultInstance()); } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public com.google.cloud.vision.v1p3beta1.LocationInfo.Builder addLocationsBuilder(int index) { return getLocationsFieldBuilder() .addBuilder(index, com.google.cloud.vision.v1p3beta1.LocationInfo.getDefaultInstance()); } /** * * *
     * The location information for the detected entity. Multiple
     * `LocationInfo` elements can be present because one location may
     * indicate the location of the scene in the image, and another location
     * may indicate the location of the place where the image was taken.
     * Location information is usually present for landmarks.
     * 
* * repeated .google.cloud.vision.v1p3beta1.LocationInfo locations = 8; */ public java.util.List getLocationsBuilderList() { return getLocationsFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.vision.v1p3beta1.LocationInfo, com.google.cloud.vision.v1p3beta1.LocationInfo.Builder, com.google.cloud.vision.v1p3beta1.LocationInfoOrBuilder> getLocationsFieldBuilder() { if (locationsBuilder_ == null) { locationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.vision.v1p3beta1.LocationInfo, com.google.cloud.vision.v1p3beta1.LocationInfo.Builder, com.google.cloud.vision.v1p3beta1.LocationInfoOrBuilder>( locations_, ((bitField0_ & 0x00000080) != 0), getParentForChildren(), isClean()); locations_ = null; } return locationsBuilder_; } private java.util.List properties_ = java.util.Collections.emptyList(); private void ensurePropertiesIsMutable() { if (!((bitField0_ & 0x00000100) != 0)) { properties_ = new java.util.ArrayList(properties_); bitField0_ |= 0x00000100; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.vision.v1p3beta1.Property, com.google.cloud.vision.v1p3beta1.Property.Builder, com.google.cloud.vision.v1p3beta1.PropertyOrBuilder> propertiesBuilder_; /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public java.util.List getPropertiesList() { if (propertiesBuilder_ == null) { return java.util.Collections.unmodifiableList(properties_); } else { return propertiesBuilder_.getMessageList(); } } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public int getPropertiesCount() { if (propertiesBuilder_ == null) { return properties_.size(); } else { return propertiesBuilder_.getCount(); } } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public com.google.cloud.vision.v1p3beta1.Property getProperties(int index) { if (propertiesBuilder_ == null) { return properties_.get(index); } else { return propertiesBuilder_.getMessage(index); } } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder setProperties(int index, com.google.cloud.vision.v1p3beta1.Property value) { if (propertiesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePropertiesIsMutable(); properties_.set(index, value); onChanged(); } else { propertiesBuilder_.setMessage(index, value); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder setProperties( int index, com.google.cloud.vision.v1p3beta1.Property.Builder builderForValue) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.set(index, builderForValue.build()); onChanged(); } else { propertiesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder addProperties(com.google.cloud.vision.v1p3beta1.Property value) { if (propertiesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePropertiesIsMutable(); properties_.add(value); onChanged(); } else { propertiesBuilder_.addMessage(value); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder addProperties(int index, com.google.cloud.vision.v1p3beta1.Property value) { if (propertiesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePropertiesIsMutable(); properties_.add(index, value); onChanged(); } else { propertiesBuilder_.addMessage(index, value); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder addProperties( com.google.cloud.vision.v1p3beta1.Property.Builder builderForValue) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.add(builderForValue.build()); onChanged(); } else { propertiesBuilder_.addMessage(builderForValue.build()); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder addProperties( int index, com.google.cloud.vision.v1p3beta1.Property.Builder builderForValue) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.add(index, builderForValue.build()); onChanged(); } else { propertiesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder addAllProperties( java.lang.Iterable values) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll(values, properties_); onChanged(); } else { propertiesBuilder_.addAllMessages(values); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder clearProperties() { if (propertiesBuilder_ == null) { properties_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000100); onChanged(); } else { propertiesBuilder_.clear(); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public Builder removeProperties(int index) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.remove(index); onChanged(); } else { propertiesBuilder_.remove(index); } return this; } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public com.google.cloud.vision.v1p3beta1.Property.Builder getPropertiesBuilder(int index) { return getPropertiesFieldBuilder().getBuilder(index); } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public com.google.cloud.vision.v1p3beta1.PropertyOrBuilder getPropertiesOrBuilder(int index) { if (propertiesBuilder_ == null) { return properties_.get(index); } else { return propertiesBuilder_.getMessageOrBuilder(index); } } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public java.util.List getPropertiesOrBuilderList() { if (propertiesBuilder_ != null) { return propertiesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(properties_); } } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public com.google.cloud.vision.v1p3beta1.Property.Builder addPropertiesBuilder() { return getPropertiesFieldBuilder() .addBuilder(com.google.cloud.vision.v1p3beta1.Property.getDefaultInstance()); } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public com.google.cloud.vision.v1p3beta1.Property.Builder addPropertiesBuilder(int index) { return getPropertiesFieldBuilder() .addBuilder(index, com.google.cloud.vision.v1p3beta1.Property.getDefaultInstance()); } /** * * *
     * Some entities may have optional user-supplied `Property` (name/value)
     * fields, such a score or string that qualifies the entity.
     * 
* * repeated .google.cloud.vision.v1p3beta1.Property properties = 9; */ public java.util.List getPropertiesBuilderList() { return getPropertiesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.vision.v1p3beta1.Property, com.google.cloud.vision.v1p3beta1.Property.Builder, com.google.cloud.vision.v1p3beta1.PropertyOrBuilder> getPropertiesFieldBuilder() { if (propertiesBuilder_ == null) { propertiesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.google.cloud.vision.v1p3beta1.Property, com.google.cloud.vision.v1p3beta1.Property.Builder, com.google.cloud.vision.v1p3beta1.PropertyOrBuilder>( properties_, ((bitField0_ & 0x00000100) != 0), getParentForChildren(), isClean()); properties_ = null; } return propertiesBuilder_; } @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.EntityAnnotation) } // @@protoc_insertion_point(class_scope:google.cloud.vision.v1p3beta1.EntityAnnotation) private static final com.google.cloud.vision.v1p3beta1.EntityAnnotation DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.vision.v1p3beta1.EntityAnnotation(); } public static com.google.cloud.vision.v1p3beta1.EntityAnnotation getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public EntityAnnotation 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.EntityAnnotation getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy