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

com.aerospike.vector.client.proto.GcInvalidVerticesRequest 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: index.proto

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

/**
 * Protobuf type {@code aerospike.vector.GcInvalidVerticesRequest}
 */
public final class GcInvalidVerticesRequest extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:aerospike.vector.GcInvalidVerticesRequest)
    GcInvalidVerticesRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use GcInvalidVerticesRequest.newBuilder() to construct.
  private GcInvalidVerticesRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private GcInvalidVerticesRequest() {
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new GcInvalidVerticesRequest();
  }

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return com.aerospike.vector.client.proto.Index.internal_static_aerospike_vector_GcInvalidVerticesRequest_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return com.aerospike.vector.client.proto.Index.internal_static_aerospike_vector_GcInvalidVerticesRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            com.aerospike.vector.client.proto.GcInvalidVerticesRequest.class, com.aerospike.vector.client.proto.GcInvalidVerticesRequest.Builder.class);
  }

  private int bitField0_;
  public static final int INDEXID_FIELD_NUMBER = 1;
  private com.aerospike.vector.client.proto.IndexId indexId_;
  /**
   * .aerospike.vector.IndexId indexId = 1;
   * @return Whether the indexId field is set.
   */
  @java.lang.Override
  public boolean hasIndexId() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * .aerospike.vector.IndexId indexId = 1;
   * @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_;
  }
  /**
   * .aerospike.vector.IndexId indexId = 1;
   */
  @java.lang.Override
  public com.aerospike.vector.client.proto.IndexIdOrBuilder getIndexIdOrBuilder() {
    return indexId_ == null ? com.aerospike.vector.client.proto.IndexId.getDefaultInstance() : indexId_;
  }

  public static final int CUTOFFTIMESTAMP_FIELD_NUMBER = 2;
  private long cutoffTimestamp_ = 0L;
  /**
   * 
   * Vertices identified as invalid before cutoff timestamp (Unix timestamp) are garbage collected.
   * 
* * int64 cutoffTimestamp = 2; * @return The cutoffTimestamp. */ @java.lang.Override public long getCutoffTimestamp() { return cutoffTimestamp_; } 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, getIndexId()); } if (cutoffTimestamp_ != 0L) { output.writeInt64(2, cutoffTimestamp_); } 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, getIndexId()); } if (cutoffTimestamp_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(2, cutoffTimestamp_); } 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.GcInvalidVerticesRequest)) { return super.equals(obj); } com.aerospike.vector.client.proto.GcInvalidVerticesRequest other = (com.aerospike.vector.client.proto.GcInvalidVerticesRequest) obj; if (hasIndexId() != other.hasIndexId()) return false; if (hasIndexId()) { if (!getIndexId() .equals(other.getIndexId())) return false; } if (getCutoffTimestamp() != other.getCutoffTimestamp()) 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 (hasIndexId()) { hash = (37 * hash) + INDEXID_FIELD_NUMBER; hash = (53 * hash) + getIndexId().hashCode(); } hash = (37 * hash) + CUTOFFTIMESTAMP_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getCutoffTimestamp()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest 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.GcInvalidVerticesRequest 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; } /** * Protobuf type {@code aerospike.vector.GcInvalidVerticesRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:aerospike.vector.GcInvalidVerticesRequest) com.aerospike.vector.client.proto.GcInvalidVerticesRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.aerospike.vector.client.proto.Index.internal_static_aerospike_vector_GcInvalidVerticesRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.aerospike.vector.client.proto.Index.internal_static_aerospike_vector_GcInvalidVerticesRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( com.aerospike.vector.client.proto.GcInvalidVerticesRequest.class, com.aerospike.vector.client.proto.GcInvalidVerticesRequest.Builder.class); } // Construct using com.aerospike.vector.client.proto.GcInvalidVerticesRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getIndexIdFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; indexId_ = null; if (indexIdBuilder_ != null) { indexIdBuilder_.dispose(); indexIdBuilder_ = null; } cutoffTimestamp_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.aerospike.vector.client.proto.Index.internal_static_aerospike_vector_GcInvalidVerticesRequest_descriptor; } @java.lang.Override public com.aerospike.vector.client.proto.GcInvalidVerticesRequest getDefaultInstanceForType() { return com.aerospike.vector.client.proto.GcInvalidVerticesRequest.getDefaultInstance(); } @java.lang.Override public com.aerospike.vector.client.proto.GcInvalidVerticesRequest build() { com.aerospike.vector.client.proto.GcInvalidVerticesRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.aerospike.vector.client.proto.GcInvalidVerticesRequest buildPartial() { com.aerospike.vector.client.proto.GcInvalidVerticesRequest result = new com.aerospike.vector.client.proto.GcInvalidVerticesRequest(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.aerospike.vector.client.proto.GcInvalidVerticesRequest result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.indexId_ = indexIdBuilder_ == null ? indexId_ : indexIdBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.cutoffTimestamp_ = cutoffTimestamp_; } 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.GcInvalidVerticesRequest) { return mergeFrom((com.aerospike.vector.client.proto.GcInvalidVerticesRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.aerospike.vector.client.proto.GcInvalidVerticesRequest other) { if (other == com.aerospike.vector.client.proto.GcInvalidVerticesRequest.getDefaultInstance()) return this; if (other.hasIndexId()) { mergeIndexId(other.getIndexId()); } if (other.getCutoffTimestamp() != 0L) { setCutoffTimestamp(other.getCutoffTimestamp()); } 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( getIndexIdFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 16: { cutoffTimestamp_ = input.readInt64(); bitField0_ |= 0x00000002; break; } // case 16 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.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_; /** * .aerospike.vector.IndexId indexId = 1; * @return Whether the indexId field is set. */ public boolean hasIndexId() { return ((bitField0_ & 0x00000001) != 0); } /** * .aerospike.vector.IndexId indexId = 1; * @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(); } } /** * .aerospike.vector.IndexId indexId = 1; */ 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_ |= 0x00000001; onChanged(); return this; } /** * .aerospike.vector.IndexId indexId = 1; */ public Builder setIndexId( com.aerospike.vector.client.proto.IndexId.Builder builderForValue) { if (indexIdBuilder_ == null) { indexId_ = builderForValue.build(); } else { indexIdBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** * .aerospike.vector.IndexId indexId = 1; */ public Builder mergeIndexId(com.aerospike.vector.client.proto.IndexId value) { if (indexIdBuilder_ == null) { if (((bitField0_ & 0x00000001) != 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_ |= 0x00000001; onChanged(); } return this; } /** * .aerospike.vector.IndexId indexId = 1; */ public Builder clearIndexId() { bitField0_ = (bitField0_ & ~0x00000001); indexId_ = null; if (indexIdBuilder_ != null) { indexIdBuilder_.dispose(); indexIdBuilder_ = null; } onChanged(); return this; } /** * .aerospike.vector.IndexId indexId = 1; */ public com.aerospike.vector.client.proto.IndexId.Builder getIndexIdBuilder() { bitField0_ |= 0x00000001; onChanged(); return getIndexIdFieldBuilder().getBuilder(); } /** * .aerospike.vector.IndexId indexId = 1; */ 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_; } } /** * .aerospike.vector.IndexId indexId = 1; */ 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_; } private long cutoffTimestamp_ ; /** *
     * Vertices identified as invalid before cutoff timestamp (Unix timestamp) are garbage collected.
     * 
* * int64 cutoffTimestamp = 2; * @return The cutoffTimestamp. */ @java.lang.Override public long getCutoffTimestamp() { return cutoffTimestamp_; } /** *
     * Vertices identified as invalid before cutoff timestamp (Unix timestamp) are garbage collected.
     * 
* * int64 cutoffTimestamp = 2; * @param value The cutoffTimestamp to set. * @return This builder for chaining. */ public Builder setCutoffTimestamp(long value) { cutoffTimestamp_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * Vertices identified as invalid before cutoff timestamp (Unix timestamp) are garbage collected.
     * 
* * int64 cutoffTimestamp = 2; * @return This builder for chaining. */ public Builder clearCutoffTimestamp() { bitField0_ = (bitField0_ & ~0x00000002); cutoffTimestamp_ = 0L; 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.GcInvalidVerticesRequest) } // @@protoc_insertion_point(class_scope:aerospike.vector.GcInvalidVerticesRequest) private static final com.aerospike.vector.client.proto.GcInvalidVerticesRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.aerospike.vector.client.proto.GcInvalidVerticesRequest(); } public static com.aerospike.vector.client.proto.GcInvalidVerticesRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public GcInvalidVerticesRequest 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.GcInvalidVerticesRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy