com.google.cloud.videointelligence.v1.NormalizedBoundingBox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-video-intelligence-v1 Show documentation
Show all versions of proto-google-cloud-video-intelligence-v1 Show documentation
PROTO library for proto-google-cloud-video-intelligence-v1
/*
* Copyright 2020 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/videointelligence/v1/video_intelligence.proto
package com.google.cloud.videointelligence.v1;
/**
*
*
*
* Normalized bounding box.
* The normalized vertex coordinates are relative to the original image.
* Range: [0, 1].
*
*
* Protobuf type {@code google.cloud.videointelligence.v1.NormalizedBoundingBox}
*/
public final class NormalizedBoundingBox extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.videointelligence.v1.NormalizedBoundingBox)
NormalizedBoundingBoxOrBuilder {
private static final long serialVersionUID = 0L;
// Use NormalizedBoundingBox.newBuilder() to construct.
private NormalizedBoundingBox(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private NormalizedBoundingBox() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new NormalizedBoundingBox();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private NormalizedBoundingBox(
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:
{
left_ = input.readFloat();
break;
}
case 21:
{
top_ = input.readFloat();
break;
}
case 29:
{
right_ = input.readFloat();
break;
}
case 37:
{
bottom_ = input.readFloat();
break;
}
default:
{
if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.videointelligence.v1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1_NormalizedBoundingBox_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.videointelligence.v1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1_NormalizedBoundingBox_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.videointelligence.v1.NormalizedBoundingBox.class,
com.google.cloud.videointelligence.v1.NormalizedBoundingBox.Builder.class);
}
public static final int LEFT_FIELD_NUMBER = 1;
private float left_;
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @return The left.
*/
@java.lang.Override
public float getLeft() {
return left_;
}
public static final int TOP_FIELD_NUMBER = 2;
private float top_;
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @return The top.
*/
@java.lang.Override
public float getTop() {
return top_;
}
public static final int RIGHT_FIELD_NUMBER = 3;
private float right_;
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @return The right.
*/
@java.lang.Override
public float getRight() {
return right_;
}
public static final int BOTTOM_FIELD_NUMBER = 4;
private float bottom_;
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @return The bottom.
*/
@java.lang.Override
public float getBottom() {
return bottom_;
}
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 (left_ != 0F) {
output.writeFloat(1, left_);
}
if (top_ != 0F) {
output.writeFloat(2, top_);
}
if (right_ != 0F) {
output.writeFloat(3, right_);
}
if (bottom_ != 0F) {
output.writeFloat(4, bottom_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (left_ != 0F) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(1, left_);
}
if (top_ != 0F) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(2, top_);
}
if (right_ != 0F) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(3, right_);
}
if (bottom_ != 0F) {
size += com.google.protobuf.CodedOutputStream.computeFloatSize(4, bottom_);
}
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.google.cloud.videointelligence.v1.NormalizedBoundingBox)) {
return super.equals(obj);
}
com.google.cloud.videointelligence.v1.NormalizedBoundingBox other =
(com.google.cloud.videointelligence.v1.NormalizedBoundingBox) obj;
if (java.lang.Float.floatToIntBits(getLeft())
!= java.lang.Float.floatToIntBits(other.getLeft())) return false;
if (java.lang.Float.floatToIntBits(getTop()) != java.lang.Float.floatToIntBits(other.getTop()))
return false;
if (java.lang.Float.floatToIntBits(getRight())
!= java.lang.Float.floatToIntBits(other.getRight())) return false;
if (java.lang.Float.floatToIntBits(getBottom())
!= java.lang.Float.floatToIntBits(other.getBottom())) 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) + LEFT_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getLeft());
hash = (37 * hash) + TOP_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getTop());
hash = (37 * hash) + RIGHT_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getRight());
hash = (37 * hash) + BOTTOM_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getBottom());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox 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.videointelligence.v1.NormalizedBoundingBox parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox 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.videointelligence.v1.NormalizedBoundingBox parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox 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.videointelligence.v1.NormalizedBoundingBox parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox 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.videointelligence.v1.NormalizedBoundingBox parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox 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.videointelligence.v1.NormalizedBoundingBox 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;
}
/**
*
*
*
* Normalized bounding box.
* The normalized vertex coordinates are relative to the original image.
* Range: [0, 1].
*
*
* Protobuf type {@code google.cloud.videointelligence.v1.NormalizedBoundingBox}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.videointelligence.v1.NormalizedBoundingBox)
com.google.cloud.videointelligence.v1.NormalizedBoundingBoxOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.videointelligence.v1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1_NormalizedBoundingBox_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.videointelligence.v1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1_NormalizedBoundingBox_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.videointelligence.v1.NormalizedBoundingBox.class,
com.google.cloud.videointelligence.v1.NormalizedBoundingBox.Builder.class);
}
// Construct using com.google.cloud.videointelligence.v1.NormalizedBoundingBox.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();
left_ = 0F;
top_ = 0F;
right_ = 0F;
bottom_ = 0F;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.videointelligence.v1.VideoIntelligenceServiceProto
.internal_static_google_cloud_videointelligence_v1_NormalizedBoundingBox_descriptor;
}
@java.lang.Override
public com.google.cloud.videointelligence.v1.NormalizedBoundingBox getDefaultInstanceForType() {
return com.google.cloud.videointelligence.v1.NormalizedBoundingBox.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.videointelligence.v1.NormalizedBoundingBox build() {
com.google.cloud.videointelligence.v1.NormalizedBoundingBox result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.videointelligence.v1.NormalizedBoundingBox buildPartial() {
com.google.cloud.videointelligence.v1.NormalizedBoundingBox result =
new com.google.cloud.videointelligence.v1.NormalizedBoundingBox(this);
result.left_ = left_;
result.top_ = top_;
result.right_ = right_;
result.bottom_ = bottom_;
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.google.cloud.videointelligence.v1.NormalizedBoundingBox) {
return mergeFrom((com.google.cloud.videointelligence.v1.NormalizedBoundingBox) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.videointelligence.v1.NormalizedBoundingBox other) {
if (other == com.google.cloud.videointelligence.v1.NormalizedBoundingBox.getDefaultInstance())
return this;
if (other.getLeft() != 0F) {
setLeft(other.getLeft());
}
if (other.getTop() != 0F) {
setTop(other.getTop());
}
if (other.getRight() != 0F) {
setRight(other.getRight());
}
if (other.getBottom() != 0F) {
setBottom(other.getBottom());
}
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.google.cloud.videointelligence.v1.NormalizedBoundingBox parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage =
(com.google.cloud.videointelligence.v1.NormalizedBoundingBox) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private float left_;
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @return The left.
*/
@java.lang.Override
public float getLeft() {
return left_;
}
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @param value The left to set.
* @return This builder for chaining.
*/
public Builder setLeft(float value) {
left_ = value;
onChanged();
return this;
}
/**
*
*
*
* Left X coordinate.
*
*
* float left = 1;
*
* @return This builder for chaining.
*/
public Builder clearLeft() {
left_ = 0F;
onChanged();
return this;
}
private float top_;
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @return The top.
*/
@java.lang.Override
public float getTop() {
return top_;
}
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @param value The top to set.
* @return This builder for chaining.
*/
public Builder setTop(float value) {
top_ = value;
onChanged();
return this;
}
/**
*
*
*
* Top Y coordinate.
*
*
* float top = 2;
*
* @return This builder for chaining.
*/
public Builder clearTop() {
top_ = 0F;
onChanged();
return this;
}
private float right_;
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @return The right.
*/
@java.lang.Override
public float getRight() {
return right_;
}
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @param value The right to set.
* @return This builder for chaining.
*/
public Builder setRight(float value) {
right_ = value;
onChanged();
return this;
}
/**
*
*
*
* Right X coordinate.
*
*
* float right = 3;
*
* @return This builder for chaining.
*/
public Builder clearRight() {
right_ = 0F;
onChanged();
return this;
}
private float bottom_;
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @return The bottom.
*/
@java.lang.Override
public float getBottom() {
return bottom_;
}
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @param value The bottom to set.
* @return This builder for chaining.
*/
public Builder setBottom(float value) {
bottom_ = value;
onChanged();
return this;
}
/**
*
*
*
* Bottom Y coordinate.
*
*
* float bottom = 4;
*
* @return This builder for chaining.
*/
public Builder clearBottom() {
bottom_ = 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:google.cloud.videointelligence.v1.NormalizedBoundingBox)
}
// @@protoc_insertion_point(class_scope:google.cloud.videointelligence.v1.NormalizedBoundingBox)
private static final com.google.cloud.videointelligence.v1.NormalizedBoundingBox DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.videointelligence.v1.NormalizedBoundingBox();
}
public static com.google.cloud.videointelligence.v1.NormalizedBoundingBox getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public NormalizedBoundingBox parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new NormalizedBoundingBox(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.google.cloud.videointelligence.v1.NormalizedBoundingBox getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}