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

com.aerospike.vector.client.proto.GetRequest 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: transact.proto

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

/**
 * 
 * Get request to insert/update a record.
 * 
* * Protobuf type {@code aerospike.vector.GetRequest} */ public final class GetRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:aerospike.vector.GetRequest) GetRequestOrBuilder { private static final long serialVersionUID = 0L; // Use GetRequest.newBuilder() to construct. private GetRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private GetRequest() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new GetRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_GetRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_GetRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.GetRequest.class, com.aerospike.vector.client.proto.GetRequest.Builder.class); } private int bitField0_; public static final int KEY_FIELD_NUMBER = 1; private com.aerospike.vector.client.proto.Key key_; /** *
   * The key for the record to insert/update
   * 
* * .aerospike.vector.Key key = 1; * @return Whether the key field is set. */ @java.lang.Override public boolean hasKey() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * The key for the record to insert/update
   * 
* * .aerospike.vector.Key key = 1; * @return The key. */ @java.lang.Override public com.aerospike.vector.client.proto.Key getKey() { return key_ == null ? com.aerospike.vector.client.proto.Key.getDefaultInstance() : key_; } /** *
   * The key for the record to insert/update
   * 
* * .aerospike.vector.Key key = 1; */ @java.lang.Override public com.aerospike.vector.client.proto.KeyOrBuilder getKeyOrBuilder() { return key_ == null ? com.aerospike.vector.client.proto.Key.getDefaultInstance() : key_; } public static final int PROJECTION_FIELD_NUMBER = 2; private com.aerospike.vector.client.proto.ProjectionSpec projection_; /** *
   * The field selector.
   * 
* * .aerospike.vector.ProjectionSpec projection = 2; * @return Whether the projection field is set. */ @java.lang.Override public boolean hasProjection() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * The field selector.
   * 
* * .aerospike.vector.ProjectionSpec projection = 2; * @return The projection. */ @java.lang.Override public com.aerospike.vector.client.proto.ProjectionSpec getProjection() { return projection_ == null ? com.aerospike.vector.client.proto.ProjectionSpec.getDefaultInstance() : projection_; } /** *
   * The field selector.
   * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ @java.lang.Override public com.aerospike.vector.client.proto.ProjectionSpecOrBuilder getProjectionOrBuilder() { return projection_ == null ? com.aerospike.vector.client.proto.ProjectionSpec.getDefaultInstance() : projection_; } 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 (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(1, getKey()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(2, getProjection()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getKey()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getProjection()); } 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.GetRequest)) { return super.equals(obj); } com.aerospike.vector.client.proto.GetRequest other = (com.aerospike.vector.client.proto.GetRequest) obj; if (hasKey() != other.hasKey()) return false; if (hasKey()) { if (!getKey() .equals(other.getKey())) return false; } if (hasProjection() != other.hasProjection()) return false; if (hasProjection()) { if (!getProjection() .equals(other.getProjection())) return false; } if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasKey()) { hash = (37 * hash) + KEY_FIELD_NUMBER; hash = (53 * hash) + getKey().hashCode(); } if (hasProjection()) { hash = (37 * hash) + PROJECTION_FIELD_NUMBER; hash = (53 * hash) + getProjection().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.aerospike.vector.client.proto.GetRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.GetRequest 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.GetRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.GetRequest 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.GetRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.GetRequest 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.GetRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.GetRequest 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.GetRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.GetRequest 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.GetRequest 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.GetRequest 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.GetRequest 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; } /** *
   * Get request to insert/update a record.
   * 
* * Protobuf type {@code aerospike.vector.GetRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:aerospike.vector.GetRequest) com.aerospike.vector.client.proto.GetRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_GetRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_GetRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.GetRequest.class, com.aerospike.vector.client.proto.GetRequest.Builder.class); } // Construct using com.aerospike.vector.client.proto.GetRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getKeyFieldBuilder(); getProjectionFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; key_ = null; if (keyBuilder_ != null) { keyBuilder_.dispose(); keyBuilder_ = null; } projection_ = null; if (projectionBuilder_ != null) { projectionBuilder_.dispose(); projectionBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_GetRequest_descriptor; } @java.lang.Override public com.aerospike.vector.client.proto.GetRequest getDefaultInstanceForType() { return com.aerospike.vector.client.proto.GetRequest.getDefaultInstance(); } @java.lang.Override public com.aerospike.vector.client.proto.GetRequest build() { com.aerospike.vector.client.proto.GetRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.aerospike.vector.client.proto.GetRequest buildPartial() { com.aerospike.vector.client.proto.GetRequest result = new com.aerospike.vector.client.proto.GetRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.aerospike.vector.client.proto.GetRequest result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.key_ = keyBuilder_ == null ? key_ : keyBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.projection_ = projectionBuilder_ == null ? projection_ : projectionBuilder_.build(); to_bitField0_ |= 0x00000002; } result.bitField0_ |= to_bitField0_; } @java.lang.Override public Builder clone() { return super.clone(); } @java.lang.Override public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.setField(field, value); } @java.lang.Override public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return super.clearField(field); } @java.lang.Override public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return super.clearOneof(oneof); } @java.lang.Override public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return super.setRepeatedField(field, index, value); } @java.lang.Override public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return super.addRepeatedField(field, value); } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.aerospike.vector.client.proto.GetRequest) { return mergeFrom((com.aerospike.vector.client.proto.GetRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.aerospike.vector.client.proto.GetRequest other) { if (other == com.aerospike.vector.client.proto.GetRequest.getDefaultInstance()) return this; if (other.hasKey()) { mergeKey(other.getKey()); } if (other.hasProjection()) { mergeProjection(other.getProjection()); } 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: { input.readMessage( getKeyFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 18: { input.readMessage( getProjectionFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private com.aerospike.vector.client.proto.Key key_; private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Key, com.aerospike.vector.client.proto.Key.Builder, com.aerospike.vector.client.proto.KeyOrBuilder> keyBuilder_; /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; * @return Whether the key field is set. */ public boolean hasKey() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; * @return The key. */ public com.aerospike.vector.client.proto.Key getKey() { if (keyBuilder_ == null) { return key_ == null ? com.aerospike.vector.client.proto.Key.getDefaultInstance() : key_; } else { return keyBuilder_.getMessage(); } } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ public Builder setKey(com.aerospike.vector.client.proto.Key value) { if (keyBuilder_ == null) { if (value == null) { throw new NullPointerException(); } key_ = value; } else { keyBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ public Builder setKey( com.aerospike.vector.client.proto.Key.Builder builderForValue) { if (keyBuilder_ == null) { key_ = builderForValue.build(); } else { keyBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ public Builder mergeKey(com.aerospike.vector.client.proto.Key value) { if (keyBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && key_ != null && key_ != com.aerospike.vector.client.proto.Key.getDefaultInstance()) { getKeyBuilder().mergeFrom(value); } else { key_ = value; } } else { keyBuilder_.mergeFrom(value); } if (key_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ public Builder clearKey() { bitField0_ = (bitField0_ & ~0x00000001); key_ = null; if (keyBuilder_ != null) { keyBuilder_.dispose(); keyBuilder_ = null; } onChanged(); return this; } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ public com.aerospike.vector.client.proto.Key.Builder getKeyBuilder() { bitField0_ |= 0x00000001; onChanged(); return getKeyFieldBuilder().getBuilder(); } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ public com.aerospike.vector.client.proto.KeyOrBuilder getKeyOrBuilder() { if (keyBuilder_ != null) { return keyBuilder_.getMessageOrBuilder(); } else { return key_ == null ? com.aerospike.vector.client.proto.Key.getDefaultInstance() : key_; } } /** *
     * The key for the record to insert/update
     * 
* * .aerospike.vector.Key key = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Key, com.aerospike.vector.client.proto.Key.Builder, com.aerospike.vector.client.proto.KeyOrBuilder> getKeyFieldBuilder() { if (keyBuilder_ == null) { keyBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.Key, com.aerospike.vector.client.proto.Key.Builder, com.aerospike.vector.client.proto.KeyOrBuilder>( getKey(), getParentForChildren(), isClean()); key_ = null; } return keyBuilder_; } private com.aerospike.vector.client.proto.ProjectionSpec projection_; private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.ProjectionSpec, com.aerospike.vector.client.proto.ProjectionSpec.Builder, com.aerospike.vector.client.proto.ProjectionSpecOrBuilder> projectionBuilder_; /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; * @return Whether the projection field is set. */ public boolean hasProjection() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; * @return The projection. */ public com.aerospike.vector.client.proto.ProjectionSpec getProjection() { if (projectionBuilder_ == null) { return projection_ == null ? com.aerospike.vector.client.proto.ProjectionSpec.getDefaultInstance() : projection_; } else { return projectionBuilder_.getMessage(); } } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ public Builder setProjection(com.aerospike.vector.client.proto.ProjectionSpec value) { if (projectionBuilder_ == null) { if (value == null) { throw new NullPointerException(); } projection_ = value; } else { projectionBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ public Builder setProjection( com.aerospike.vector.client.proto.ProjectionSpec.Builder builderForValue) { if (projectionBuilder_ == null) { projection_ = builderForValue.build(); } else { projectionBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ public Builder mergeProjection(com.aerospike.vector.client.proto.ProjectionSpec value) { if (projectionBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && projection_ != null && projection_ != com.aerospike.vector.client.proto.ProjectionSpec.getDefaultInstance()) { getProjectionBuilder().mergeFrom(value); } else { projection_ = value; } } else { projectionBuilder_.mergeFrom(value); } if (projection_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ public Builder clearProjection() { bitField0_ = (bitField0_ & ~0x00000002); projection_ = null; if (projectionBuilder_ != null) { projectionBuilder_.dispose(); projectionBuilder_ = null; } onChanged(); return this; } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ public com.aerospike.vector.client.proto.ProjectionSpec.Builder getProjectionBuilder() { bitField0_ |= 0x00000002; onChanged(); return getProjectionFieldBuilder().getBuilder(); } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ public com.aerospike.vector.client.proto.ProjectionSpecOrBuilder getProjectionOrBuilder() { if (projectionBuilder_ != null) { return projectionBuilder_.getMessageOrBuilder(); } else { return projection_ == null ? com.aerospike.vector.client.proto.ProjectionSpec.getDefaultInstance() : projection_; } } /** *
     * The field selector.
     * 
* * .aerospike.vector.ProjectionSpec projection = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.ProjectionSpec, com.aerospike.vector.client.proto.ProjectionSpec.Builder, com.aerospike.vector.client.proto.ProjectionSpecOrBuilder> getProjectionFieldBuilder() { if (projectionBuilder_ == null) { projectionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.ProjectionSpec, com.aerospike.vector.client.proto.ProjectionSpec.Builder, com.aerospike.vector.client.proto.ProjectionSpecOrBuilder>( getProjection(), getParentForChildren(), isClean()); projection_ = null; } return projectionBuilder_; } @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.GetRequest) } // @@protoc_insertion_point(class_scope:aerospike.vector.GetRequest) private static final com.aerospike.vector.client.proto.GetRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.aerospike.vector.client.proto.GetRequest(); } public static com.aerospike.vector.client.proto.GetRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GetRequest 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.GetRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy