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

com.aerospike.vector.client.proto.IsIndexedRequest 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;

/**
 * 
 * Request to check whether the given record is indexed for the specified
 * index.
 * 
* * Protobuf type {@code aerospike.vector.IsIndexedRequest} */ public final class IsIndexedRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:aerospike.vector.IsIndexedRequest) IsIndexedRequestOrBuilder { private static final long serialVersionUID = 0L; // Use IsIndexedRequest.newBuilder() to construct. private IsIndexedRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private IsIndexedRequest() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new IsIndexedRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_IsIndexedRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_IsIndexedRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.IsIndexedRequest.class, com.aerospike.vector.client.proto.IsIndexedRequest.Builder.class); } private int bitField0_; public static final int KEY_FIELD_NUMBER = 1; private com.aerospike.vector.client.proto.Key key_; /** *
   * The key of the aerospike record holding Vector.
   * 
* * .aerospike.vector.Key key = 1; * @return Whether the key field is set. */ @java.lang.Override public boolean hasKey() { return ((bitField0_ & 0x00000001) != 0); } /** *
   * The key of the aerospike record holding Vector.
   * 
* * .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 of the aerospike record holding Vector.
   * 
* * .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 INDEXID_FIELD_NUMBER = 2; private com.aerospike.vector.client.proto.IndexId indexId_; /** *
   * Index in which the vector is indexed.
   * 
* * .aerospike.vector.IndexId indexId = 2; * @return Whether the indexId field is set. */ @java.lang.Override public boolean hasIndexId() { return ((bitField0_ & 0x00000002) != 0); } /** *
   * Index in which the vector is indexed.
   * 
* * .aerospike.vector.IndexId indexId = 2; * @return The indexId. */ @java.lang.Override public com.aerospike.vector.client.proto.IndexId getIndexId() { return indexId_ == null ? com.aerospike.vector.client.proto.IndexId.getDefaultInstance() : indexId_; } /** *
   * Index in which the vector is indexed.
   * 
* * .aerospike.vector.IndexId indexId = 2; */ @java.lang.Override public com.aerospike.vector.client.proto.IndexIdOrBuilder getIndexIdOrBuilder() { return indexId_ == null ? com.aerospike.vector.client.proto.IndexId.getDefaultInstance() : indexId_; } 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, getIndexId()); } 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, getIndexId()); } 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.IsIndexedRequest)) { return super.equals(obj); } com.aerospike.vector.client.proto.IsIndexedRequest other = (com.aerospike.vector.client.proto.IsIndexedRequest) obj; if (hasKey() != other.hasKey()) return false; if (hasKey()) { if (!getKey() .equals(other.getKey())) return false; } if (hasIndexId() != other.hasIndexId()) return false; if (hasIndexId()) { if (!getIndexId() .equals(other.getIndexId())) 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 (hasIndexId()) { hash = (37 * hash) + INDEXID_FIELD_NUMBER; hash = (53 * hash) + getIndexId().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.aerospike.vector.client.proto.IsIndexedRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.IsIndexedRequest 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.IsIndexedRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.IsIndexedRequest 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.IsIndexedRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.IsIndexedRequest 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.IsIndexedRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.IsIndexedRequest 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.IsIndexedRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.IsIndexedRequest 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.IsIndexedRequest 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.IsIndexedRequest 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.IsIndexedRequest 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; } /** *
   * Request to check whether the given record is indexed for the specified
   * index.
   * 
* * Protobuf type {@code aerospike.vector.IsIndexedRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:aerospike.vector.IsIndexedRequest) com.aerospike.vector.client.proto.IsIndexedRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_IsIndexedRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_IsIndexedRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.IsIndexedRequest.class, com.aerospike.vector.client.proto.IsIndexedRequest.Builder.class); } // Construct using com.aerospike.vector.client.proto.IsIndexedRequest.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(); getIndexIdFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; key_ = null; if (keyBuilder_ != null) { keyBuilder_.dispose(); keyBuilder_ = null; } indexId_ = null; if (indexIdBuilder_ != null) { indexIdBuilder_.dispose(); indexIdBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.aerospike.vector.client.proto.Transact.internal_static_aerospike_vector_IsIndexedRequest_descriptor; } @java.lang.Override public com.aerospike.vector.client.proto.IsIndexedRequest getDefaultInstanceForType() { return com.aerospike.vector.client.proto.IsIndexedRequest.getDefaultInstance(); } @java.lang.Override public com.aerospike.vector.client.proto.IsIndexedRequest build() { com.aerospike.vector.client.proto.IsIndexedRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.aerospike.vector.client.proto.IsIndexedRequest buildPartial() { com.aerospike.vector.client.proto.IsIndexedRequest result = new com.aerospike.vector.client.proto.IsIndexedRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.aerospike.vector.client.proto.IsIndexedRequest 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.indexId_ = indexIdBuilder_ == null ? indexId_ : indexIdBuilder_.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.IsIndexedRequest) { return mergeFrom((com.aerospike.vector.client.proto.IsIndexedRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.aerospike.vector.client.proto.IsIndexedRequest other) { if (other == com.aerospike.vector.client.proto.IsIndexedRequest.getDefaultInstance()) return this; if (other.hasKey()) { mergeKey(other.getKey()); } if (other.hasIndexId()) { mergeIndexId(other.getIndexId()); } 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( getIndexIdFieldBuilder().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 of the aerospike record holding Vector.
     * 
* * .aerospike.vector.Key key = 1; * @return Whether the key field is set. */ public boolean hasKey() { return ((bitField0_ & 0x00000001) != 0); } /** *
     * The key of the aerospike record holding Vector.
     * 
* * .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 of the aerospike record holding Vector.
     * 
* * .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 of the aerospike record holding Vector.
     * 
* * .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 of the aerospike record holding Vector.
     * 
* * .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 of the aerospike record holding Vector.
     * 
* * .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 of the aerospike record holding Vector.
     * 
* * .aerospike.vector.Key key = 1; */ public com.aerospike.vector.client.proto.Key.Builder getKeyBuilder() { bitField0_ |= 0x00000001; onChanged(); return getKeyFieldBuilder().getBuilder(); } /** *
     * The key of the aerospike record holding Vector.
     * 
* * .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 of the aerospike record holding Vector.
     * 
* * .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.IndexId indexId_; private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.IndexId, com.aerospike.vector.client.proto.IndexId.Builder, com.aerospike.vector.client.proto.IndexIdOrBuilder> indexIdBuilder_; /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; * @return Whether the indexId field is set. */ public boolean hasIndexId() { return ((bitField0_ & 0x00000002) != 0); } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; * @return The indexId. */ public com.aerospike.vector.client.proto.IndexId getIndexId() { if (indexIdBuilder_ == null) { return indexId_ == null ? com.aerospike.vector.client.proto.IndexId.getDefaultInstance() : indexId_; } else { return indexIdBuilder_.getMessage(); } } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ public Builder setIndexId(com.aerospike.vector.client.proto.IndexId value) { if (indexIdBuilder_ == null) { if (value == null) { throw new NullPointerException(); } indexId_ = value; } else { indexIdBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ public Builder setIndexId( com.aerospike.vector.client.proto.IndexId.Builder builderForValue) { if (indexIdBuilder_ == null) { indexId_ = builderForValue.build(); } else { indexIdBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ public Builder mergeIndexId(com.aerospike.vector.client.proto.IndexId value) { if (indexIdBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && indexId_ != null && indexId_ != com.aerospike.vector.client.proto.IndexId.getDefaultInstance()) { getIndexIdBuilder().mergeFrom(value); } else { indexId_ = value; } } else { indexIdBuilder_.mergeFrom(value); } if (indexId_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ public Builder clearIndexId() { bitField0_ = (bitField0_ & ~0x00000002); indexId_ = null; if (indexIdBuilder_ != null) { indexIdBuilder_.dispose(); indexIdBuilder_ = null; } onChanged(); return this; } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ public com.aerospike.vector.client.proto.IndexId.Builder getIndexIdBuilder() { bitField0_ |= 0x00000002; onChanged(); return getIndexIdFieldBuilder().getBuilder(); } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ public com.aerospike.vector.client.proto.IndexIdOrBuilder getIndexIdOrBuilder() { if (indexIdBuilder_ != null) { return indexIdBuilder_.getMessageOrBuilder(); } else { return indexId_ == null ? com.aerospike.vector.client.proto.IndexId.getDefaultInstance() : indexId_; } } /** *
     * Index in which the vector is indexed.
     * 
* * .aerospike.vector.IndexId indexId = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.IndexId, com.aerospike.vector.client.proto.IndexId.Builder, com.aerospike.vector.client.proto.IndexIdOrBuilder> getIndexIdFieldBuilder() { if (indexIdBuilder_ == null) { indexIdBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.aerospike.vector.client.proto.IndexId, com.aerospike.vector.client.proto.IndexId.Builder, com.aerospike.vector.client.proto.IndexIdOrBuilder>( getIndexId(), getParentForChildren(), isClean()); indexId_ = null; } return indexIdBuilder_; } @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.IsIndexedRequest) } // @@protoc_insertion_point(class_scope:aerospike.vector.IsIndexedRequest) private static final com.aerospike.vector.client.proto.IsIndexedRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.aerospike.vector.client.proto.IsIndexedRequest(); } public static com.aerospike.vector.client.proto.IsIndexedRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public IsIndexedRequest 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.IsIndexedRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy