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

com.clarifai.grpc.api.BoundingBox Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: proto/clarifai/api/resources.proto

package com.clarifai.grpc.api;

/**
 * 
 * Rectangular bounding box for a region.
 * 
* * Protobuf type {@code clarifai.api.BoundingBox} */ public final class BoundingBox extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:clarifai.api.BoundingBox) BoundingBoxOrBuilder { private static final long serialVersionUID = 0L; // Use BoundingBox.newBuilder() to construct. private BoundingBox(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private BoundingBox() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new BoundingBox(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private BoundingBox( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } com.google.protobuf.UnknownFieldSet.Builder unknownFields = com.google.protobuf.UnknownFieldSet.newBuilder(); try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 13: { topRow_ = input.readFloat(); break; } case 21: { leftCol_ = input.readFloat(); break; } case 29: { bottomRow_ = input.readFloat(); break; } case 37: { rightCol_ = input.readFloat(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_BoundingBox_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_BoundingBox_fieldAccessorTable .ensureFieldAccessorsInitialized( com.clarifai.grpc.api.BoundingBox.class, com.clarifai.grpc.api.BoundingBox.Builder.class); } public static final int TOP_ROW_FIELD_NUMBER = 1; private float topRow_; /** *
   * The top left of the bounding box normalized to the data dimension to be within [0-1.0]
   * 
* * float top_row = 1 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The topRow. */ @java.lang.Override public float getTopRow() { return topRow_; } public static final int LEFT_COL_FIELD_NUMBER = 2; private float leftCol_; /** *
   * The left column of the bounding box normalized to the data dimension to be within [0-1.0]
   * 
* * float left_col = 2 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The leftCol. */ @java.lang.Override public float getLeftCol() { return leftCol_; } public static final int BOTTOM_ROW_FIELD_NUMBER = 3; private float bottomRow_; /** *
   * The bottom row of the bounding box normalized to the data dimension to be within [0-1.0]
   * 
* * float bottom_row = 3 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The bottomRow. */ @java.lang.Override public float getBottomRow() { return bottomRow_; } public static final int RIGHT_COL_FIELD_NUMBER = 4; private float rightCol_; /** *
   * The right col of the bounding box normalized to the data dimension to be within [0-1.0]
   * 
* * float right_col = 4 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The rightCol. */ @java.lang.Override public float getRightCol() { return rightCol_; } 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 (java.lang.Float.floatToRawIntBits(topRow_) != 0) { output.writeFloat(1, topRow_); } if (java.lang.Float.floatToRawIntBits(leftCol_) != 0) { output.writeFloat(2, leftCol_); } if (java.lang.Float.floatToRawIntBits(bottomRow_) != 0) { output.writeFloat(3, bottomRow_); } if (java.lang.Float.floatToRawIntBits(rightCol_) != 0) { output.writeFloat(4, rightCol_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (java.lang.Float.floatToRawIntBits(topRow_) != 0) { size += com.google.protobuf.CodedOutputStream .computeFloatSize(1, topRow_); } if (java.lang.Float.floatToRawIntBits(leftCol_) != 0) { size += com.google.protobuf.CodedOutputStream .computeFloatSize(2, leftCol_); } if (java.lang.Float.floatToRawIntBits(bottomRow_) != 0) { size += com.google.protobuf.CodedOutputStream .computeFloatSize(3, bottomRow_); } if (java.lang.Float.floatToRawIntBits(rightCol_) != 0) { size += com.google.protobuf.CodedOutputStream .computeFloatSize(4, rightCol_); } size += unknownFields.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.clarifai.grpc.api.BoundingBox)) { return super.equals(obj); } com.clarifai.grpc.api.BoundingBox other = (com.clarifai.grpc.api.BoundingBox) obj; if (java.lang.Float.floatToIntBits(getTopRow()) != java.lang.Float.floatToIntBits( other.getTopRow())) return false; if (java.lang.Float.floatToIntBits(getLeftCol()) != java.lang.Float.floatToIntBits( other.getLeftCol())) return false; if (java.lang.Float.floatToIntBits(getBottomRow()) != java.lang.Float.floatToIntBits( other.getBottomRow())) return false; if (java.lang.Float.floatToIntBits(getRightCol()) != java.lang.Float.floatToIntBits( other.getRightCol())) return false; if (!unknownFields.equals(other.unknownFields)) 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) + TOP_ROW_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getTopRow()); hash = (37 * hash) + LEFT_COL_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getLeftCol()); hash = (37 * hash) + BOTTOM_ROW_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getBottomRow()); hash = (37 * hash) + RIGHT_COL_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getRightCol()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.clarifai.grpc.api.BoundingBox parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.BoundingBox parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.clarifai.grpc.api.BoundingBox parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.BoundingBox parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.clarifai.grpc.api.BoundingBox parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.clarifai.grpc.api.BoundingBox parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.clarifai.grpc.api.BoundingBox parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.clarifai.grpc.api.BoundingBox 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.clarifai.grpc.api.BoundingBox parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.clarifai.grpc.api.BoundingBox 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.clarifai.grpc.api.BoundingBox parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.clarifai.grpc.api.BoundingBox 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.clarifai.grpc.api.BoundingBox 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; } /** *
   * Rectangular bounding box for a region.
   * 
* * Protobuf type {@code clarifai.api.BoundingBox} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:clarifai.api.BoundingBox) com.clarifai.grpc.api.BoundingBoxOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_BoundingBox_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_BoundingBox_fieldAccessorTable .ensureFieldAccessorsInitialized( com.clarifai.grpc.api.BoundingBox.class, com.clarifai.grpc.api.BoundingBox.Builder.class); } // Construct using com.clarifai.grpc.api.BoundingBox.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); topRow_ = 0F; leftCol_ = 0F; bottomRow_ = 0F; rightCol_ = 0F; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.clarifai.grpc.api.Resources.internal_static_clarifai_api_BoundingBox_descriptor; } @java.lang.Override public com.clarifai.grpc.api.BoundingBox getDefaultInstanceForType() { return com.clarifai.grpc.api.BoundingBox.getDefaultInstance(); } @java.lang.Override public com.clarifai.grpc.api.BoundingBox build() { com.clarifai.grpc.api.BoundingBox result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.clarifai.grpc.api.BoundingBox buildPartial() { com.clarifai.grpc.api.BoundingBox result = new com.clarifai.grpc.api.BoundingBox(this); result.topRow_ = topRow_; result.leftCol_ = leftCol_; result.bottomRow_ = bottomRow_; result.rightCol_ = rightCol_; onBuilt(); return result; } @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.clarifai.grpc.api.BoundingBox) { return mergeFrom((com.clarifai.grpc.api.BoundingBox)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.clarifai.grpc.api.BoundingBox other) { if (other == com.clarifai.grpc.api.BoundingBox.getDefaultInstance()) return this; if (other.getTopRow() != 0F) { setTopRow(other.getTopRow()); } if (other.getLeftCol() != 0F) { setLeftCol(other.getLeftCol()); } if (other.getBottomRow() != 0F) { setBottomRow(other.getBottomRow()); } if (other.getRightCol() != 0F) { setRightCol(other.getRightCol()); } this.mergeUnknownFields(other.unknownFields); 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 { com.clarifai.grpc.api.BoundingBox parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.clarifai.grpc.api.BoundingBox) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private float topRow_ ; /** *
     * The top left of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float top_row = 1 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The topRow. */ @java.lang.Override public float getTopRow() { return topRow_; } /** *
     * The top left of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float top_row = 1 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @param value The topRow to set. * @return This builder for chaining. */ public Builder setTopRow(float value) { topRow_ = value; onChanged(); return this; } /** *
     * The top left of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float top_row = 1 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return This builder for chaining. */ public Builder clearTopRow() { topRow_ = 0F; onChanged(); return this; } private float leftCol_ ; /** *
     * The left column of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float left_col = 2 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The leftCol. */ @java.lang.Override public float getLeftCol() { return leftCol_; } /** *
     * The left column of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float left_col = 2 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @param value The leftCol to set. * @return This builder for chaining. */ public Builder setLeftCol(float value) { leftCol_ = value; onChanged(); return this; } /** *
     * The left column of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float left_col = 2 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return This builder for chaining. */ public Builder clearLeftCol() { leftCol_ = 0F; onChanged(); return this; } private float bottomRow_ ; /** *
     * The bottom row of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float bottom_row = 3 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The bottomRow. */ @java.lang.Override public float getBottomRow() { return bottomRow_; } /** *
     * The bottom row of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float bottom_row = 3 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @param value The bottomRow to set. * @return This builder for chaining. */ public Builder setBottomRow(float value) { bottomRow_ = value; onChanged(); return this; } /** *
     * The bottom row of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float bottom_row = 3 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return This builder for chaining. */ public Builder clearBottomRow() { bottomRow_ = 0F; onChanged(); return this; } private float rightCol_ ; /** *
     * The right col of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float right_col = 4 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return The rightCol. */ @java.lang.Override public float getRightCol() { return rightCol_; } /** *
     * The right col of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float right_col = 4 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @param value The rightCol to set. * @return This builder for chaining. */ public Builder setRightCol(float value) { rightCol_ = value; onChanged(); return this; } /** *
     * The right col of the bounding box normalized to the data dimension to be within [0-1.0]
     * 
* * float right_col = 4 [(.clarifai.api.utils.cl_show_if_empty) = true]; * @return This builder for chaining. */ public Builder clearRightCol() { rightCol_ = 0F; onChanged(); return this; } @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:clarifai.api.BoundingBox) } // @@protoc_insertion_point(class_scope:clarifai.api.BoundingBox) private static final com.clarifai.grpc.api.BoundingBox DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.clarifai.grpc.api.BoundingBox(); } public static com.clarifai.grpc.api.BoundingBox getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public BoundingBox parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new BoundingBox(input, extensionRegistry); } }; 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.clarifai.grpc.api.BoundingBox getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy