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

com.aerospike.vector.client.proto.Value Maven / Gradle / Ivy

Go to download

This project includes the Java client for Aerospike Vector Search for high-performance data interactions.

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

// Protobuf Java Version: 3.25.1
package com.aerospike.vector.client.proto;

/**
 * 
 * A data value.
 * 
* * Protobuf type {@code aerospike.vector.Value} */ public final class Value extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:aerospike.vector.Value) ValueOrBuilder { private static final long serialVersionUID = 0L; // Use Value.newBuilder() to construct. private Value(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private Value() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new Value(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Types.internal_static_aerospike_vector_Value_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Types.internal_static_aerospike_vector_Value_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.Value.class, com.aerospike.vector.client.proto.Value.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 { STRINGVALUE(1), BYTESVALUE(2), INTVALUE(3), LONGVALUE(4), FLOATVALUE(5), DOUBLEVALUE(6), MAPVALUE(7), LISTVALUE(8), VECTORVALUE(9), BOOLEANVALUE(10), 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 STRINGVALUE; case 2: return BYTESVALUE; case 3: return INTVALUE; case 4: return LONGVALUE; case 5: return FLOATVALUE; case 6: return DOUBLEVALUE; case 7: return MAPVALUE; case 8: return LISTVALUE; case 9: return VECTORVALUE; case 10: return BOOLEANVALUE; 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 STRINGVALUE_FIELD_NUMBER = 1; /** * string stringValue = 1; * @return Whether the stringValue field is set. */ public boolean hasStringValue() { return valueCase_ == 1; } /** * string stringValue = 1; * @return The stringValue. */ public java.lang.String getStringValue() { java.lang.Object ref = ""; if (valueCase_ == 1) { ref = value_; } 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(); if (valueCase_ == 1) { value_ = s; } return s; } } /** * string stringValue = 1; * @return The bytes for stringValue. */ public com.google.protobuf.ByteString getStringValueBytes() { java.lang.Object ref = ""; if (valueCase_ == 1) { ref = value_; } if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); if (valueCase_ == 1) { value_ = b; } return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int BYTESVALUE_FIELD_NUMBER = 2; /** * bytes bytesValue = 2; * @return Whether the bytesValue field is set. */ @java.lang.Override public boolean hasBytesValue() { return valueCase_ == 2; } /** * bytes bytesValue = 2; * @return The bytesValue. */ @java.lang.Override public com.google.protobuf.ByteString getBytesValue() { if (valueCase_ == 2) { return (com.google.protobuf.ByteString) value_; } return com.google.protobuf.ByteString.EMPTY; } public static final int INTVALUE_FIELD_NUMBER = 3; /** * int32 intValue = 3; * @return Whether the intValue field is set. */ @java.lang.Override public boolean hasIntValue() { return valueCase_ == 3; } /** * int32 intValue = 3; * @return The intValue. */ @java.lang.Override public int getIntValue() { if (valueCase_ == 3) { return (java.lang.Integer) value_; } return 0; } public static final int LONGVALUE_FIELD_NUMBER = 4; /** * int64 longValue = 4; * @return Whether the longValue field is set. */ @java.lang.Override public boolean hasLongValue() { return valueCase_ == 4; } /** * int64 longValue = 4; * @return The longValue. */ @java.lang.Override public long getLongValue() { if (valueCase_ == 4) { return (java.lang.Long) value_; } return 0L; } public static final int FLOATVALUE_FIELD_NUMBER = 5; /** * float floatValue = 5; * @return Whether the floatValue field is set. */ @java.lang.Override public boolean hasFloatValue() { return valueCase_ == 5; } /** * float floatValue = 5; * @return The floatValue. */ @java.lang.Override public float getFloatValue() { if (valueCase_ == 5) { return (java.lang.Float) value_; } return 0F; } public static final int DOUBLEVALUE_FIELD_NUMBER = 6; /** * double doubleValue = 6; * @return Whether the doubleValue field is set. */ @java.lang.Override public boolean hasDoubleValue() { return valueCase_ == 6; } /** * double doubleValue = 6; * @return The doubleValue. */ @java.lang.Override public double getDoubleValue() { if (valueCase_ == 6) { return (java.lang.Double) value_; } return 0D; } public static final int MAPVALUE_FIELD_NUMBER = 7; /** * .aerospike.vector.Map mapValue = 7; * @return Whether the mapValue field is set. */ @java.lang.Override public boolean hasMapValue() { return valueCase_ == 7; } /** * .aerospike.vector.Map mapValue = 7; * @return The mapValue. */ @java.lang.Override public com.aerospike.vector.client.proto.Map getMapValue() { if (valueCase_ == 7) { return (com.aerospike.vector.client.proto.Map) value_; } return com.aerospike.vector.client.proto.Map.getDefaultInstance(); } /** * .aerospike.vector.Map mapValue = 7; */ @java.lang.Override public com.aerospike.vector.client.proto.MapOrBuilder getMapValueOrBuilder() { if (valueCase_ == 7) { return (com.aerospike.vector.client.proto.Map) value_; } return com.aerospike.vector.client.proto.Map.getDefaultInstance(); } public static final int LISTVALUE_FIELD_NUMBER = 8; /** * .aerospike.vector.List listValue = 8; * @return Whether the listValue field is set. */ @java.lang.Override public boolean hasListValue() { return valueCase_ == 8; } /** * .aerospike.vector.List listValue = 8; * @return The listValue. */ @java.lang.Override public com.aerospike.vector.client.proto.List getListValue() { if (valueCase_ == 8) { return (com.aerospike.vector.client.proto.List) value_; } return com.aerospike.vector.client.proto.List.getDefaultInstance(); } /** * .aerospike.vector.List listValue = 8; */ @java.lang.Override public com.aerospike.vector.client.proto.ListOrBuilder getListValueOrBuilder() { if (valueCase_ == 8) { return (com.aerospike.vector.client.proto.List) value_; } return com.aerospike.vector.client.proto.List.getDefaultInstance(); } public static final int VECTORVALUE_FIELD_NUMBER = 9; /** * .aerospike.vector.Vector vectorValue = 9; * @return Whether the vectorValue field is set. */ @java.lang.Override public boolean hasVectorValue() { return valueCase_ == 9; } /** * .aerospike.vector.Vector vectorValue = 9; * @return The vectorValue. */ @java.lang.Override public com.aerospike.vector.client.proto.Vector getVectorValue() { if (valueCase_ == 9) { return (com.aerospike.vector.client.proto.Vector) value_; } return com.aerospike.vector.client.proto.Vector.getDefaultInstance(); } /** * .aerospike.vector.Vector vectorValue = 9; */ @java.lang.Override public com.aerospike.vector.client.proto.VectorOrBuilder getVectorValueOrBuilder() { if (valueCase_ == 9) { return (com.aerospike.vector.client.proto.Vector) value_; } return com.aerospike.vector.client.proto.Vector.getDefaultInstance(); } public static final int BOOLEANVALUE_FIELD_NUMBER = 10; /** * bool booleanValue = 10; * @return Whether the booleanValue field is set. */ @java.lang.Override public boolean hasBooleanValue() { return valueCase_ == 10; } /** * bool booleanValue = 10; * @return The booleanValue. */ @java.lang.Override public boolean getBooleanValue() { if (valueCase_ == 10) { return (java.lang.Boolean) value_; } return false; } 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) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, value_); } if (valueCase_ == 2) { output.writeBytes( 2, (com.google.protobuf.ByteString) value_); } if (valueCase_ == 3) { output.writeInt32( 3, (int)((java.lang.Integer) value_)); } if (valueCase_ == 4) { output.writeInt64( 4, (long)((java.lang.Long) value_)); } if (valueCase_ == 5) { output.writeFloat( 5, (float)((java.lang.Float) value_)); } if (valueCase_ == 6) { output.writeDouble( 6, (double)((java.lang.Double) value_)); } if (valueCase_ == 7) { output.writeMessage(7, (com.aerospike.vector.client.proto.Map) value_); } if (valueCase_ == 8) { output.writeMessage(8, (com.aerospike.vector.client.proto.List) value_); } if (valueCase_ == 9) { output.writeMessage(9, (com.aerospike.vector.client.proto.Vector) value_); } if (valueCase_ == 10) { output.writeBool( 10, (boolean)((java.lang.Boolean) 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.GeneratedMessageV3.computeStringSize(1, value_); } if (valueCase_ == 2) { size += com.google.protobuf.CodedOutputStream .computeBytesSize( 2, (com.google.protobuf.ByteString) value_); } if (valueCase_ == 3) { size += com.google.protobuf.CodedOutputStream .computeInt32Size( 3, (int)((java.lang.Integer) value_)); } if (valueCase_ == 4) { size += com.google.protobuf.CodedOutputStream .computeInt64Size( 4, (long)((java.lang.Long) value_)); } if (valueCase_ == 5) { size += com.google.protobuf.CodedOutputStream .computeFloatSize( 5, (float)((java.lang.Float) value_)); } if (valueCase_ == 6) { size += com.google.protobuf.CodedOutputStream .computeDoubleSize( 6, (double)((java.lang.Double) value_)); } if (valueCase_ == 7) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, (com.aerospike.vector.client.proto.Map) value_); } if (valueCase_ == 8) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(8, (com.aerospike.vector.client.proto.List) value_); } if (valueCase_ == 9) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(9, (com.aerospike.vector.client.proto.Vector) value_); } if (valueCase_ == 10) { size += com.google.protobuf.CodedOutputStream .computeBoolSize( 10, (boolean)((java.lang.Boolean) 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.aerospike.vector.client.proto.Value)) { return super.equals(obj); } com.aerospike.vector.client.proto.Value other = (com.aerospike.vector.client.proto.Value) obj; if (!getValueCase().equals(other.getValueCase())) return false; switch (valueCase_) { case 1: if (!getStringValue() .equals(other.getStringValue())) return false; break; case 2: if (!getBytesValue() .equals(other.getBytesValue())) return false; break; case 3: if (getIntValue() != other.getIntValue()) return false; break; case 4: if (getLongValue() != other.getLongValue()) return false; break; case 5: if (java.lang.Float.floatToIntBits(getFloatValue()) != java.lang.Float.floatToIntBits( other.getFloatValue())) return false; break; case 6: if (java.lang.Double.doubleToLongBits(getDoubleValue()) != java.lang.Double.doubleToLongBits( other.getDoubleValue())) return false; break; case 7: if (!getMapValue() .equals(other.getMapValue())) return false; break; case 8: if (!getListValue() .equals(other.getListValue())) return false; break; case 9: if (!getVectorValue() .equals(other.getVectorValue())) return false; break; case 10: if (getBooleanValue() != other.getBooleanValue()) 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) + STRINGVALUE_FIELD_NUMBER; hash = (53 * hash) + getStringValue().hashCode(); break; case 2: hash = (37 * hash) + BYTESVALUE_FIELD_NUMBER; hash = (53 * hash) + getBytesValue().hashCode(); break; case 3: hash = (37 * hash) + INTVALUE_FIELD_NUMBER; hash = (53 * hash) + getIntValue(); break; case 4: hash = (37 * hash) + LONGVALUE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getLongValue()); break; case 5: hash = (37 * hash) + FLOATVALUE_FIELD_NUMBER; hash = (53 * hash) + java.lang.Float.floatToIntBits( getFloatValue()); break; case 6: hash = (37 * hash) + DOUBLEVALUE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( java.lang.Double.doubleToLongBits(getDoubleValue())); break; case 7: hash = (37 * hash) + MAPVALUE_FIELD_NUMBER; hash = (53 * hash) + getMapValue().hashCode(); break; case 8: hash = (37 * hash) + LISTVALUE_FIELD_NUMBER; hash = (53 * hash) + getListValue().hashCode(); break; case 9: hash = (37 * hash) + VECTORVALUE_FIELD_NUMBER; hash = (53 * hash) + getVectorValue().hashCode(); break; case 10: hash = (37 * hash) + BOOLEANVALUE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getBooleanValue()); break; case 0: default: } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.aerospike.vector.client.proto.Value parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.Value parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.aerospike.vector.client.proto.Value parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.Value parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.aerospike.vector.client.proto.Value parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.Value parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.aerospike.vector.client.proto.Value parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.Value 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.aerospike.vector.client.proto.Value parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.Value 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.aerospike.vector.client.proto.Value parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.Value 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.aerospike.vector.client.proto.Value 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; } /** *
   * A data value.
   * 
* * Protobuf type {@code aerospike.vector.Value} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:aerospike.vector.Value) com.aerospike.vector.client.proto.ValueOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Types.internal_static_aerospike_vector_Value_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Types.internal_static_aerospike_vector_Value_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.Value.class, com.aerospike.vector.client.proto.Value.Builder.class); } // Construct using com.aerospike.vector.client.proto.Value.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; if (mapValueBuilder_ != null) { mapValueBuilder_.clear(); } if (listValueBuilder_ != null) { listValueBuilder_.clear(); } if (vectorValueBuilder_ != null) { vectorValueBuilder_.clear(); } valueCase_ = 0; value_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.aerospike.vector.client.proto.Types.internal_static_aerospike_vector_Value_descriptor; } @java.lang.Override public com.aerospike.vector.client.proto.Value getDefaultInstanceForType() { return com.aerospike.vector.client.proto.Value.getDefaultInstance(); } @java.lang.Override public com.aerospike.vector.client.proto.Value build() { com.aerospike.vector.client.proto.Value result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.aerospike.vector.client.proto.Value buildPartial() { com.aerospike.vector.client.proto.Value result = new com.aerospike.vector.client.proto.Value(this); if (bitField0_ != 0) { buildPartial0(result); } buildPartialOneofs(result); onBuilt(); return result; } private void buildPartial0(com.aerospike.vector.client.proto.Value result) { int from_bitField0_ = bitField0_; } private void buildPartialOneofs(com.aerospike.vector.client.proto.Value result) { result.valueCase_ = valueCase_; result.value_ = this.value_; if (valueCase_ == 7 && mapValueBuilder_ != null) { result.value_ = mapValueBuilder_.build(); } if (valueCase_ == 8 && listValueBuilder_ != null) { result.value_ = listValueBuilder_.build(); } if (valueCase_ == 9 && vectorValueBuilder_ != null) { result.value_ = vectorValueBuilder_.build(); } } @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.aerospike.vector.client.proto.Value) { return mergeFrom((com.aerospike.vector.client.proto.Value)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.aerospike.vector.client.proto.Value other) { if (other == com.aerospike.vector.client.proto.Value.getDefaultInstance()) return this; switch (other.getValueCase()) { case STRINGVALUE: { valueCase_ = 1; value_ = other.value_; onChanged(); break; } case BYTESVALUE: { setBytesValue(other.getBytesValue()); break; } case INTVALUE: { setIntValue(other.getIntValue()); break; } case LONGVALUE: { setLongValue(other.getLongValue()); break; } case FLOATVALUE: { setFloatValue(other.getFloatValue()); break; } case DOUBLEVALUE: { setDoubleValue(other.getDoubleValue()); break; } case MAPVALUE: { mergeMapValue(other.getMapValue()); break; } case LISTVALUE: { mergeListValue(other.getListValue()); break; } case VECTORVALUE: { mergeVectorValue(other.getVectorValue()); break; } case BOOLEANVALUE: { setBooleanValue(other.getBooleanValue()); 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 10: { java.lang.String s = input.readStringRequireUtf8(); valueCase_ = 1; value_ = s; break; } // case 10 case 18: { value_ = input.readBytes(); valueCase_ = 2; break; } // case 18 case 24: { value_ = input.readInt32(); valueCase_ = 3; break; } // case 24 case 32: { value_ = input.readInt64(); valueCase_ = 4; break; } // case 32 case 45: { value_ = input.readFloat(); valueCase_ = 5; break; } // case 45 case 49: { value_ = input.readDouble(); valueCase_ = 6; break; } // case 49 case 58: { input.readMessage( getMapValueFieldBuilder().getBuilder(), extensionRegistry); valueCase_ = 7; break; } // case 58 case 66: { input.readMessage( getListValueFieldBuilder().getBuilder(), extensionRegistry); valueCase_ = 8; break; } // case 66 case 74: { input.readMessage( getVectorValueFieldBuilder().getBuilder(), extensionRegistry); valueCase_ = 9; break; } // case 74 case 80: { value_ = input.readBool(); valueCase_ = 10; break; } // case 80 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_; /** * string stringValue = 1; * @return Whether the stringValue field is set. */ @java.lang.Override public boolean hasStringValue() { return valueCase_ == 1; } /** * string stringValue = 1; * @return The stringValue. */ @java.lang.Override public java.lang.String getStringValue() { java.lang.Object ref = ""; if (valueCase_ == 1) { ref = value_; } if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); if (valueCase_ == 1) { value_ = s; } return s; } else { return (java.lang.String) ref; } } /** * string stringValue = 1; * @return The bytes for stringValue. */ @java.lang.Override public com.google.protobuf.ByteString getStringValueBytes() { java.lang.Object ref = ""; if (valueCase_ == 1) { ref = value_; } if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); if (valueCase_ == 1) { value_ = b; } return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string stringValue = 1; * @param value The stringValue to set. * @return This builder for chaining. */ public Builder setStringValue( java.lang.String value) { if (value == null) { throw new NullPointerException(); } valueCase_ = 1; value_ = value; onChanged(); return this; } /** * string stringValue = 1; * @return This builder for chaining. */ public Builder clearStringValue() { if (valueCase_ == 1) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * string stringValue = 1; * @param value The bytes for stringValue to set. * @return This builder for chaining. */ public Builder setStringValueBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); valueCase_ = 1; value_ = value; onChanged(); return this; } /** * bytes bytesValue = 2; * @return Whether the bytesValue field is set. */ public boolean hasBytesValue() { return valueCase_ == 2; } /** * bytes bytesValue = 2; * @return The bytesValue. */ public com.google.protobuf.ByteString getBytesValue() { if (valueCase_ == 2) { return (com.google.protobuf.ByteString) value_; } return com.google.protobuf.ByteString.EMPTY; } /** * bytes bytesValue = 2; * @param value The bytesValue to set. * @return This builder for chaining. */ public Builder setBytesValue(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } valueCase_ = 2; value_ = value; onChanged(); return this; } /** * bytes bytesValue = 2; * @return This builder for chaining. */ public Builder clearBytesValue() { if (valueCase_ == 2) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * int32 intValue = 3; * @return Whether the intValue field is set. */ public boolean hasIntValue() { return valueCase_ == 3; } /** * int32 intValue = 3; * @return The intValue. */ public int getIntValue() { if (valueCase_ == 3) { return (java.lang.Integer) value_; } return 0; } /** * int32 intValue = 3; * @param value The intValue to set. * @return This builder for chaining. */ public Builder setIntValue(int value) { valueCase_ = 3; value_ = value; onChanged(); return this; } /** * int32 intValue = 3; * @return This builder for chaining. */ public Builder clearIntValue() { if (valueCase_ == 3) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * int64 longValue = 4; * @return Whether the longValue field is set. */ public boolean hasLongValue() { return valueCase_ == 4; } /** * int64 longValue = 4; * @return The longValue. */ public long getLongValue() { if (valueCase_ == 4) { return (java.lang.Long) value_; } return 0L; } /** * int64 longValue = 4; * @param value The longValue to set. * @return This builder for chaining. */ public Builder setLongValue(long value) { valueCase_ = 4; value_ = value; onChanged(); return this; } /** * int64 longValue = 4; * @return This builder for chaining. */ public Builder clearLongValue() { if (valueCase_ == 4) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * float floatValue = 5; * @return Whether the floatValue field is set. */ public boolean hasFloatValue() { return valueCase_ == 5; } /** * float floatValue = 5; * @return The floatValue. */ public float getFloatValue() { if (valueCase_ == 5) { return (java.lang.Float) value_; } return 0F; } /** * float floatValue = 5; * @param value The floatValue to set. * @return This builder for chaining. */ public Builder setFloatValue(float value) { valueCase_ = 5; value_ = value; onChanged(); return this; } /** * float floatValue = 5; * @return This builder for chaining. */ public Builder clearFloatValue() { if (valueCase_ == 5) { valueCase_ = 0; value_ = null; onChanged(); } return this; } /** * double doubleValue = 6; * @return Whether the doubleValue field is set. */ public boolean hasDoubleValue() { return valueCase_ == 6; } /** * double doubleValue = 6; * @return The doubleValue. */ public double getDoubleValue() { if (valueCase_ == 6) { return (java.lang.Double) value_; } return 0D; } /** * double doubleValue = 6; * @param value The doubleValue to set. * @return This builder for chaining. */ public Builder setDoubleValue(double value) { valueCase_ = 6; value_ = value; onChanged(); return this; } /** * double doubleValue = 6; * @return This builder for chaining. */ public Builder clearDoubleValue() { if (valueCase_ == 6) { valueCase_ = 0; value_ = null; onChanged(); } return this; } private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Map, com.aerospike.vector.client.proto.Map.Builder, com.aerospike.vector.client.proto.MapOrBuilder> mapValueBuilder_; /** * .aerospike.vector.Map mapValue = 7; * @return Whether the mapValue field is set. */ @java.lang.Override public boolean hasMapValue() { return valueCase_ == 7; } /** * .aerospike.vector.Map mapValue = 7; * @return The mapValue. */ @java.lang.Override public com.aerospike.vector.client.proto.Map getMapValue() { if (mapValueBuilder_ == null) { if (valueCase_ == 7) { return (com.aerospike.vector.client.proto.Map) value_; } return com.aerospike.vector.client.proto.Map.getDefaultInstance(); } else { if (valueCase_ == 7) { return mapValueBuilder_.getMessage(); } return com.aerospike.vector.client.proto.Map.getDefaultInstance(); } } /** * .aerospike.vector.Map mapValue = 7; */ public Builder setMapValue(com.aerospike.vector.client.proto.Map value) { if (mapValueBuilder_ == null) { if (value == null) { throw new NullPointerException(); } value_ = value; onChanged(); } else { mapValueBuilder_.setMessage(value); } valueCase_ = 7; return this; } /** * .aerospike.vector.Map mapValue = 7; */ public Builder setMapValue( com.aerospike.vector.client.proto.Map.Builder builderForValue) { if (mapValueBuilder_ == null) { value_ = builderForValue.build(); onChanged(); } else { mapValueBuilder_.setMessage(builderForValue.build()); } valueCase_ = 7; return this; } /** * .aerospike.vector.Map mapValue = 7; */ public Builder mergeMapValue(com.aerospike.vector.client.proto.Map value) { if (mapValueBuilder_ == null) { if (valueCase_ == 7 && value_ != com.aerospike.vector.client.proto.Map.getDefaultInstance()) { value_ = com.aerospike.vector.client.proto.Map.newBuilder((com.aerospike.vector.client.proto.Map) value_) .mergeFrom(value).buildPartial(); } else { value_ = value; } onChanged(); } else { if (valueCase_ == 7) { mapValueBuilder_.mergeFrom(value); } else { mapValueBuilder_.setMessage(value); } } valueCase_ = 7; return this; } /** * .aerospike.vector.Map mapValue = 7; */ public Builder clearMapValue() { if (mapValueBuilder_ == null) { if (valueCase_ == 7) { valueCase_ = 0; value_ = null; onChanged(); } } else { if (valueCase_ == 7) { valueCase_ = 0; value_ = null; } mapValueBuilder_.clear(); } return this; } /** * .aerospike.vector.Map mapValue = 7; */ public com.aerospike.vector.client.proto.Map.Builder getMapValueBuilder() { return getMapValueFieldBuilder().getBuilder(); } /** * .aerospike.vector.Map mapValue = 7; */ @java.lang.Override public com.aerospike.vector.client.proto.MapOrBuilder getMapValueOrBuilder() { if ((valueCase_ == 7) && (mapValueBuilder_ != null)) { return mapValueBuilder_.getMessageOrBuilder(); } else { if (valueCase_ == 7) { return (com.aerospike.vector.client.proto.Map) value_; } return com.aerospike.vector.client.proto.Map.getDefaultInstance(); } } /** * .aerospike.vector.Map mapValue = 7; */ private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Map, com.aerospike.vector.client.proto.Map.Builder, com.aerospike.vector.client.proto.MapOrBuilder> getMapValueFieldBuilder() { if (mapValueBuilder_ == null) { if (!(valueCase_ == 7)) { value_ = com.aerospike.vector.client.proto.Map.getDefaultInstance(); } mapValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Map, com.aerospike.vector.client.proto.Map.Builder, com.aerospike.vector.client.proto.MapOrBuilder>( (com.aerospike.vector.client.proto.Map) value_, getParentForChildren(), isClean()); value_ = null; } valueCase_ = 7; onChanged(); return mapValueBuilder_; } private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.List, com.aerospike.vector.client.proto.List.Builder, com.aerospike.vector.client.proto.ListOrBuilder> listValueBuilder_; /** * .aerospike.vector.List listValue = 8; * @return Whether the listValue field is set. */ @java.lang.Override public boolean hasListValue() { return valueCase_ == 8; } /** * .aerospike.vector.List listValue = 8; * @return The listValue. */ @java.lang.Override public com.aerospike.vector.client.proto.List getListValue() { if (listValueBuilder_ == null) { if (valueCase_ == 8) { return (com.aerospike.vector.client.proto.List) value_; } return com.aerospike.vector.client.proto.List.getDefaultInstance(); } else { if (valueCase_ == 8) { return listValueBuilder_.getMessage(); } return com.aerospike.vector.client.proto.List.getDefaultInstance(); } } /** * .aerospike.vector.List listValue = 8; */ public Builder setListValue(com.aerospike.vector.client.proto.List value) { if (listValueBuilder_ == null) { if (value == null) { throw new NullPointerException(); } value_ = value; onChanged(); } else { listValueBuilder_.setMessage(value); } valueCase_ = 8; return this; } /** * .aerospike.vector.List listValue = 8; */ public Builder setListValue( com.aerospike.vector.client.proto.List.Builder builderForValue) { if (listValueBuilder_ == null) { value_ = builderForValue.build(); onChanged(); } else { listValueBuilder_.setMessage(builderForValue.build()); } valueCase_ = 8; return this; } /** * .aerospike.vector.List listValue = 8; */ public Builder mergeListValue(com.aerospike.vector.client.proto.List value) { if (listValueBuilder_ == null) { if (valueCase_ == 8 && value_ != com.aerospike.vector.client.proto.List.getDefaultInstance()) { value_ = com.aerospike.vector.client.proto.List.newBuilder((com.aerospike.vector.client.proto.List) value_) .mergeFrom(value).buildPartial(); } else { value_ = value; } onChanged(); } else { if (valueCase_ == 8) { listValueBuilder_.mergeFrom(value); } else { listValueBuilder_.setMessage(value); } } valueCase_ = 8; return this; } /** * .aerospike.vector.List listValue = 8; */ public Builder clearListValue() { if (listValueBuilder_ == null) { if (valueCase_ == 8) { valueCase_ = 0; value_ = null; onChanged(); } } else { if (valueCase_ == 8) { valueCase_ = 0; value_ = null; } listValueBuilder_.clear(); } return this; } /** * .aerospike.vector.List listValue = 8; */ public com.aerospike.vector.client.proto.List.Builder getListValueBuilder() { return getListValueFieldBuilder().getBuilder(); } /** * .aerospike.vector.List listValue = 8; */ @java.lang.Override public com.aerospike.vector.client.proto.ListOrBuilder getListValueOrBuilder() { if ((valueCase_ == 8) && (listValueBuilder_ != null)) { return listValueBuilder_.getMessageOrBuilder(); } else { if (valueCase_ == 8) { return (com.aerospike.vector.client.proto.List) value_; } return com.aerospike.vector.client.proto.List.getDefaultInstance(); } } /** * .aerospike.vector.List listValue = 8; */ private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.List, com.aerospike.vector.client.proto.List.Builder, com.aerospike.vector.client.proto.ListOrBuilder> getListValueFieldBuilder() { if (listValueBuilder_ == null) { if (!(valueCase_ == 8)) { value_ = com.aerospike.vector.client.proto.List.getDefaultInstance(); } listValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.List, com.aerospike.vector.client.proto.List.Builder, com.aerospike.vector.client.proto.ListOrBuilder>( (com.aerospike.vector.client.proto.List) value_, getParentForChildren(), isClean()); value_ = null; } valueCase_ = 8; onChanged(); return listValueBuilder_; } private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Vector, com.aerospike.vector.client.proto.Vector.Builder, com.aerospike.vector.client.proto.VectorOrBuilder> vectorValueBuilder_; /** * .aerospike.vector.Vector vectorValue = 9; * @return Whether the vectorValue field is set. */ @java.lang.Override public boolean hasVectorValue() { return valueCase_ == 9; } /** * .aerospike.vector.Vector vectorValue = 9; * @return The vectorValue. */ @java.lang.Override public com.aerospike.vector.client.proto.Vector getVectorValue() { if (vectorValueBuilder_ == null) { if (valueCase_ == 9) { return (com.aerospike.vector.client.proto.Vector) value_; } return com.aerospike.vector.client.proto.Vector.getDefaultInstance(); } else { if (valueCase_ == 9) { return vectorValueBuilder_.getMessage(); } return com.aerospike.vector.client.proto.Vector.getDefaultInstance(); } } /** * .aerospike.vector.Vector vectorValue = 9; */ public Builder setVectorValue(com.aerospike.vector.client.proto.Vector value) { if (vectorValueBuilder_ == null) { if (value == null) { throw new NullPointerException(); } value_ = value; onChanged(); } else { vectorValueBuilder_.setMessage(value); } valueCase_ = 9; return this; } /** * .aerospike.vector.Vector vectorValue = 9; */ public Builder setVectorValue( com.aerospike.vector.client.proto.Vector.Builder builderForValue) { if (vectorValueBuilder_ == null) { value_ = builderForValue.build(); onChanged(); } else { vectorValueBuilder_.setMessage(builderForValue.build()); } valueCase_ = 9; return this; } /** * .aerospike.vector.Vector vectorValue = 9; */ public Builder mergeVectorValue(com.aerospike.vector.client.proto.Vector value) { if (vectorValueBuilder_ == null) { if (valueCase_ == 9 && value_ != com.aerospike.vector.client.proto.Vector.getDefaultInstance()) { value_ = com.aerospike.vector.client.proto.Vector.newBuilder((com.aerospike.vector.client.proto.Vector) value_) .mergeFrom(value).buildPartial(); } else { value_ = value; } onChanged(); } else { if (valueCase_ == 9) { vectorValueBuilder_.mergeFrom(value); } else { vectorValueBuilder_.setMessage(value); } } valueCase_ = 9; return this; } /** * .aerospike.vector.Vector vectorValue = 9; */ public Builder clearVectorValue() { if (vectorValueBuilder_ == null) { if (valueCase_ == 9) { valueCase_ = 0; value_ = null; onChanged(); } } else { if (valueCase_ == 9) { valueCase_ = 0; value_ = null; } vectorValueBuilder_.clear(); } return this; } /** * .aerospike.vector.Vector vectorValue = 9; */ public com.aerospike.vector.client.proto.Vector.Builder getVectorValueBuilder() { return getVectorValueFieldBuilder().getBuilder(); } /** * .aerospike.vector.Vector vectorValue = 9; */ @java.lang.Override public com.aerospike.vector.client.proto.VectorOrBuilder getVectorValueOrBuilder() { if ((valueCase_ == 9) && (vectorValueBuilder_ != null)) { return vectorValueBuilder_.getMessageOrBuilder(); } else { if (valueCase_ == 9) { return (com.aerospike.vector.client.proto.Vector) value_; } return com.aerospike.vector.client.proto.Vector.getDefaultInstance(); } } /** * .aerospike.vector.Vector vectorValue = 9; */ private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Vector, com.aerospike.vector.client.proto.Vector.Builder, com.aerospike.vector.client.proto.VectorOrBuilder> getVectorValueFieldBuilder() { if (vectorValueBuilder_ == null) { if (!(valueCase_ == 9)) { value_ = com.aerospike.vector.client.proto.Vector.getDefaultInstance(); } vectorValueBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Vector, com.aerospike.vector.client.proto.Vector.Builder, com.aerospike.vector.client.proto.VectorOrBuilder>( (com.aerospike.vector.client.proto.Vector) value_, getParentForChildren(), isClean()); value_ = null; } valueCase_ = 9; onChanged(); return vectorValueBuilder_; } /** * bool booleanValue = 10; * @return Whether the booleanValue field is set. */ public boolean hasBooleanValue() { return valueCase_ == 10; } /** * bool booleanValue = 10; * @return The booleanValue. */ public boolean getBooleanValue() { if (valueCase_ == 10) { return (java.lang.Boolean) value_; } return false; } /** * bool booleanValue = 10; * @param value The booleanValue to set. * @return This builder for chaining. */ public Builder setBooleanValue(boolean value) { valueCase_ = 10; value_ = value; onChanged(); return this; } /** * bool booleanValue = 10; * @return This builder for chaining. */ public Builder clearBooleanValue() { if (valueCase_ == 10) { 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:aerospike.vector.Value) } // @@protoc_insertion_point(class_scope:aerospike.vector.Value) private static final com.aerospike.vector.client.proto.Value DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.aerospike.vector.client.proto.Value(); } public static com.aerospike.vector.client.proto.Value getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public Value 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.aerospike.vector.client.proto.Value getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy