
com.google.cloud.visionai.v1.AttributeValue Maven / Gradle / Ivy
/*
* 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/visionai/v1/lva.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.visionai.v1;
/**
*
*
*
* Represents an actual value of an operator attribute.
*
*
* Protobuf type {@code google.cloud.visionai.v1.AttributeValue}
*/
public final class AttributeValue extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.visionai.v1.AttributeValue)
AttributeValueOrBuilder {
private static final long serialVersionUID = 0L;
// Use AttributeValue.newBuilder() to construct.
private AttributeValue(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AttributeValue() {}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new AttributeValue();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.visionai.v1.LvaProto
.internal_static_google_cloud_visionai_v1_AttributeValue_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.visionai.v1.LvaProto
.internal_static_google_cloud_visionai_v1_AttributeValue_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.visionai.v1.AttributeValue.class,
com.google.cloud.visionai.v1.AttributeValue.Builder.class);
}
private int valueCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object value_;
public enum ValueCase
implements
com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
I(1),
F(2),
B(3),
S(4),
VALUE_NOT_SET(0);
private final int value;
private ValueCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static ValueCase valueOf(int value) {
return forNumber(value);
}
public static ValueCase forNumber(int value) {
switch (value) {
case 1:
return I;
case 2:
return F;
case 3:
return B;
case 4:
return S;
case 0:
return VALUE_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public ValueCase getValueCase() {
return ValueCase.forNumber(valueCase_);
}
public static final int I_FIELD_NUMBER = 1;
/**
*
*
*
* int.
*
*
* int64 i = 1;
*
* @return Whether the i field is set.
*/
@java.lang.Override
public boolean hasI() {
return valueCase_ == 1;
}
/**
*
*
*
* int.
*
*
* int64 i = 1;
*
* @return The i.
*/
@java.lang.Override
public long getI() {
if (valueCase_ == 1) {
return (java.lang.Long) value_;
}
return 0L;
}
public static final int F_FIELD_NUMBER = 2;
/**
*
*
*
* float.
*
*
* float f = 2;
*
* @return Whether the f field is set.
*/
@java.lang.Override
public boolean hasF() {
return valueCase_ == 2;
}
/**
*
*
*
* float.
*
*
* float f = 2;
*
* @return The f.
*/
@java.lang.Override
public float getF() {
if (valueCase_ == 2) {
return (java.lang.Float) value_;
}
return 0F;
}
public static final int B_FIELD_NUMBER = 3;
/**
*
*
*
* bool.
*
*
* bool b = 3;
*
* @return Whether the b field is set.
*/
@java.lang.Override
public boolean hasB() {
return valueCase_ == 3;
}
/**
*
*
*
* bool.
*
*
* bool b = 3;
*
* @return The b.
*/
@java.lang.Override
public boolean getB() {
if (valueCase_ == 3) {
return (java.lang.Boolean) value_;
}
return false;
}
public static final int S_FIELD_NUMBER = 4;
/**
*
*
*
* string.
*
*
* bytes s = 4;
*
* @return Whether the s field is set.
*/
@java.lang.Override
public boolean hasS() {
return valueCase_ == 4;
}
/**
*
*
*
* string.
*
*
* bytes s = 4;
*
* @return The s.
*/
@java.lang.Override
public com.google.protobuf.ByteString getS() {
if (valueCase_ == 4) {
return (com.google.protobuf.ByteString) value_;
}
return com.google.protobuf.ByteString.EMPTY;
}
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 (valueCase_ == 1) {
output.writeInt64(1, (long) ((java.lang.Long) value_));
}
if (valueCase_ == 2) {
output.writeFloat(2, (float) ((java.lang.Float) value_));
}
if (valueCase_ == 3) {
output.writeBool(3, (boolean) ((java.lang.Boolean) value_));
}
if (valueCase_ == 4) {
output.writeBytes(4, (com.google.protobuf.ByteString) value_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (valueCase_ == 1) {
size +=
com.google.protobuf.CodedOutputStream.computeInt64Size(
1, (long) ((java.lang.Long) value_));
}
if (valueCase_ == 2) {
size +=
com.google.protobuf.CodedOutputStream.computeFloatSize(
2, (float) ((java.lang.Float) value_));
}
if (valueCase_ == 3) {
size +=
com.google.protobuf.CodedOutputStream.computeBoolSize(
3, (boolean) ((java.lang.Boolean) value_));
}
if (valueCase_ == 4) {
size +=
com.google.protobuf.CodedOutputStream.computeBytesSize(
4, (com.google.protobuf.ByteString) value_);
}
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.visionai.v1.AttributeValue)) {
return super.equals(obj);
}
com.google.cloud.visionai.v1.AttributeValue other =
(com.google.cloud.visionai.v1.AttributeValue) obj;
if (!getValueCase().equals(other.getValueCase())) return false;
switch (valueCase_) {
case 1:
if (getI() != other.getI()) return false;
break;
case 2:
if (java.lang.Float.floatToIntBits(getF()) != java.lang.Float.floatToIntBits(other.getF()))
return false;
break;
case 3:
if (getB() != other.getB()) return false;
break;
case 4:
if (!getS().equals(other.getS())) return false;
break;
case 0:
default:
}
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();
switch (valueCase_) {
case 1:
hash = (37 * hash) + I_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(getI());
break;
case 2:
hash = (37 * hash) + F_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(getF());
break;
case 3:
hash = (37 * hash) + B_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getB());
break;
case 4:
hash = (37 * hash) + S_FIELD_NUMBER;
hash = (53 * hash) + getS().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.visionai.v1.AttributeValue parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.visionai.v1.AttributeValue 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.visionai.v1.AttributeValue parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.visionai.v1.AttributeValue 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.visionai.v1.AttributeValue parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.visionai.v1.AttributeValue parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.visionai.v1.AttributeValue parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.visionai.v1.AttributeValue 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.visionai.v1.AttributeValue parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.visionai.v1.AttributeValue 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.visionai.v1.AttributeValue parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.visionai.v1.AttributeValue 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.visionai.v1.AttributeValue 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;
}
/**
*
*
*
* Represents an actual value of an operator attribute.
*
*
* Protobuf type {@code google.cloud.visionai.v1.AttributeValue}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.visionai.v1.AttributeValue)
com.google.cloud.visionai.v1.AttributeValueOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.visionai.v1.LvaProto
.internal_static_google_cloud_visionai_v1_AttributeValue_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.visionai.v1.LvaProto
.internal_static_google_cloud_visionai_v1_AttributeValue_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.visionai.v1.AttributeValue.class,
com.google.cloud.visionai.v1.AttributeValue.Builder.class);
}
// Construct using com.google.cloud.visionai.v1.AttributeValue.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
valueCase_ = 0;
value_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.visionai.v1.LvaProto
.internal_static_google_cloud_visionai_v1_AttributeValue_descriptor;
}
@java.lang.Override
public com.google.cloud.visionai.v1.AttributeValue getDefaultInstanceForType() {
return com.google.cloud.visionai.v1.AttributeValue.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.visionai.v1.AttributeValue build() {
com.google.cloud.visionai.v1.AttributeValue result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.visionai.v1.AttributeValue buildPartial() {
com.google.cloud.visionai.v1.AttributeValue result =
new com.google.cloud.visionai.v1.AttributeValue(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.visionai.v1.AttributeValue result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(com.google.cloud.visionai.v1.AttributeValue result) {
result.valueCase_ = valueCase_;
result.value_ = this.value_;
}
@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.visionai.v1.AttributeValue) {
return mergeFrom((com.google.cloud.visionai.v1.AttributeValue) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.visionai.v1.AttributeValue other) {
if (other == com.google.cloud.visionai.v1.AttributeValue.getDefaultInstance()) return this;
switch (other.getValueCase()) {
case I:
{
setI(other.getI());
break;
}
case F:
{
setF(other.getF());
break;
}
case B:
{
setB(other.getB());
break;
}
case S:
{
setS(other.getS());
break;
}
case VALUE_NOT_SET:
{
break;
}
}
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 8:
{
value_ = input.readInt64();
valueCase_ = 1;
break;
} // case 8
case 21:
{
value_ = input.readFloat();
valueCase_ = 2;
break;
} // case 21
case 24:
{
value_ = input.readBool();
valueCase_ = 3;
break;
} // case 24
case 34:
{
value_ = input.readBytes();
valueCase_ = 4;
break;
} // case 34
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 valueCase_ = 0;
private java.lang.Object value_;
public ValueCase getValueCase() {
return ValueCase.forNumber(valueCase_);
}
public Builder clearValue() {
valueCase_ = 0;
value_ = null;
onChanged();
return this;
}
private int bitField0_;
/**
*
*
*
* int.
*
*
* int64 i = 1;
*
* @return Whether the i field is set.
*/
public boolean hasI() {
return valueCase_ == 1;
}
/**
*
*
*
* int.
*
*
* int64 i = 1;
*
* @return The i.
*/
public long getI() {
if (valueCase_ == 1) {
return (java.lang.Long) value_;
}
return 0L;
}
/**
*
*
*
* int.
*
*
* int64 i = 1;
*
* @param value The i to set.
* @return This builder for chaining.
*/
public Builder setI(long value) {
valueCase_ = 1;
value_ = value;
onChanged();
return this;
}
/**
*
*
*
* int.
*
*
* int64 i = 1;
*
* @return This builder for chaining.
*/
public Builder clearI() {
if (valueCase_ == 1) {
valueCase_ = 0;
value_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* float.
*
*
* float f = 2;
*
* @return Whether the f field is set.
*/
public boolean hasF() {
return valueCase_ == 2;
}
/**
*
*
*
* float.
*
*
* float f = 2;
*
* @return The f.
*/
public float getF() {
if (valueCase_ == 2) {
return (java.lang.Float) value_;
}
return 0F;
}
/**
*
*
*
* float.
*
*
* float f = 2;
*
* @param value The f to set.
* @return This builder for chaining.
*/
public Builder setF(float value) {
valueCase_ = 2;
value_ = value;
onChanged();
return this;
}
/**
*
*
*
* float.
*
*
* float f = 2;
*
* @return This builder for chaining.
*/
public Builder clearF() {
if (valueCase_ == 2) {
valueCase_ = 0;
value_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* bool.
*
*
* bool b = 3;
*
* @return Whether the b field is set.
*/
public boolean hasB() {
return valueCase_ == 3;
}
/**
*
*
*
* bool.
*
*
* bool b = 3;
*
* @return The b.
*/
public boolean getB() {
if (valueCase_ == 3) {
return (java.lang.Boolean) value_;
}
return false;
}
/**
*
*
*
* bool.
*
*
* bool b = 3;
*
* @param value The b to set.
* @return This builder for chaining.
*/
public Builder setB(boolean value) {
valueCase_ = 3;
value_ = value;
onChanged();
return this;
}
/**
*
*
*
* bool.
*
*
* bool b = 3;
*
* @return This builder for chaining.
*/
public Builder clearB() {
if (valueCase_ == 3) {
valueCase_ = 0;
value_ = null;
onChanged();
}
return this;
}
/**
*
*
*
* string.
*
*
* bytes s = 4;
*
* @return Whether the s field is set.
*/
public boolean hasS() {
return valueCase_ == 4;
}
/**
*
*
*
* string.
*
*
* bytes s = 4;
*
* @return The s.
*/
public com.google.protobuf.ByteString getS() {
if (valueCase_ == 4) {
return (com.google.protobuf.ByteString) value_;
}
return com.google.protobuf.ByteString.EMPTY;
}
/**
*
*
*
* string.
*
*
* bytes s = 4;
*
* @param value The s to set.
* @return This builder for chaining.
*/
public Builder setS(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
valueCase_ = 4;
value_ = value;
onChanged();
return this;
}
/**
*
*
*
* string.
*
*
* bytes s = 4;
*
* @return This builder for chaining.
*/
public Builder clearS() {
if (valueCase_ == 4) {
valueCase_ = 0;
value_ = null;
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.visionai.v1.AttributeValue)
}
// @@protoc_insertion_point(class_scope:google.cloud.visionai.v1.AttributeValue)
private static final com.google.cloud.visionai.v1.AttributeValue DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.visionai.v1.AttributeValue();
}
public static com.google.cloud.visionai.v1.AttributeValue getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public AttributeValue 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.visionai.v1.AttributeValue getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy