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

io.etcd.jetcd.api.LeaderKey Maven / Gradle / Ivy

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

// Protobuf Java Version: 3.25.1
package io.etcd.jetcd.api;

/**
 * Protobuf type {@code v3electionpb.LeaderKey}
 */
public final class LeaderKey extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:v3electionpb.LeaderKey)
    LeaderKeyOrBuilder {
private static final long serialVersionUID = 0L;
  // Use LeaderKey.newBuilder() to construct.
  private LeaderKey(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private LeaderKey() {
    name_ = com.google.protobuf.ByteString.EMPTY;
    key_ = com.google.protobuf.ByteString.EMPTY;
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.etcd.jetcd.api.ElectionOuterClass.internal_static_v3electionpb_LeaderKey_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return io.etcd.jetcd.api.ElectionOuterClass.internal_static_v3electionpb_LeaderKey_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            io.etcd.jetcd.api.LeaderKey.class, io.etcd.jetcd.api.LeaderKey.Builder.class);
  }

  public static final int NAME_FIELD_NUMBER = 1;
  private com.google.protobuf.ByteString name_ = com.google.protobuf.ByteString.EMPTY;
  /**
   * 
   * name is the election identifier that correponds to the leadership key.
   * 
* * bytes name = 1; * @return The name. */ @java.lang.Override public com.google.protobuf.ByteString getName() { return name_; } public static final int KEY_FIELD_NUMBER = 2; private com.google.protobuf.ByteString key_ = com.google.protobuf.ByteString.EMPTY; /** *
   * key is an opaque key representing the ownership of the election. If the key
   * is deleted, then leadership is lost.
   * 
* * bytes key = 2; * @return The key. */ @java.lang.Override public com.google.protobuf.ByteString getKey() { return key_; } public static final int REV_FIELD_NUMBER = 3; private long rev_ = 0L; /** *
   * rev is the creation revision of the key. It can be used to test for ownership
   * of an election during transactions by testing the key's creation revision
   * matches rev.
   * 
* * int64 rev = 3; * @return The rev. */ @java.lang.Override public long getRev() { return rev_; } public static final int LEASE_FIELD_NUMBER = 4; private long lease_ = 0L; /** *
   * lease is the lease ID of the election leader.
   * 
* * int64 lease = 4; * @return The lease. */ @java.lang.Override public long getLease() { return lease_; } 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 (!name_.isEmpty()) { output.writeBytes(1, name_); } if (!key_.isEmpty()) { output.writeBytes(2, key_); } if (rev_ != 0L) { output.writeInt64(3, rev_); } if (lease_ != 0L) { output.writeInt64(4, lease_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!name_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, name_); } if (!key_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(2, key_); } if (rev_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, rev_); } if (lease_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, lease_); } 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 io.etcd.jetcd.api.LeaderKey)) { return super.equals(obj); } io.etcd.jetcd.api.LeaderKey other = (io.etcd.jetcd.api.LeaderKey) obj; if (!getName() .equals(other.getName())) return false; if (!getKey() .equals(other.getKey())) return false; if (getRev() != other.getRev()) return false; if (getLease() != other.getLease()) 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(); hash = (37 * hash) + NAME_FIELD_NUMBER; hash = (53 * hash) + getName().hashCode(); hash = (37 * hash) + KEY_FIELD_NUMBER; hash = (53 * hash) + getKey().hashCode(); hash = (37 * hash) + REV_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getRev()); hash = (37 * hash) + LEASE_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getLease()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.etcd.jetcd.api.LeaderKey parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.etcd.jetcd.api.LeaderKey parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.etcd.jetcd.api.LeaderKey parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.etcd.jetcd.api.LeaderKey parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.etcd.jetcd.api.LeaderKey parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.etcd.jetcd.api.LeaderKey parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.etcd.jetcd.api.LeaderKey parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.etcd.jetcd.api.LeaderKey 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 io.etcd.jetcd.api.LeaderKey parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.etcd.jetcd.api.LeaderKey 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 io.etcd.jetcd.api.LeaderKey parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.etcd.jetcd.api.LeaderKey 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(io.etcd.jetcd.api.LeaderKey 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 v3electionpb.LeaderKey} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:v3electionpb.LeaderKey) io.etcd.jetcd.api.LeaderKeyOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.etcd.jetcd.api.ElectionOuterClass.internal_static_v3electionpb_LeaderKey_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.etcd.jetcd.api.ElectionOuterClass.internal_static_v3electionpb_LeaderKey_fieldAccessorTable .ensureFieldAccessorsInitialized( io.etcd.jetcd.api.LeaderKey.class, io.etcd.jetcd.api.LeaderKey.Builder.class); } // Construct using io.etcd.jetcd.api.LeaderKey.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; name_ = com.google.protobuf.ByteString.EMPTY; key_ = com.google.protobuf.ByteString.EMPTY; rev_ = 0L; lease_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.etcd.jetcd.api.ElectionOuterClass.internal_static_v3electionpb_LeaderKey_descriptor; } @java.lang.Override public io.etcd.jetcd.api.LeaderKey getDefaultInstanceForType() { return io.etcd.jetcd.api.LeaderKey.getDefaultInstance(); } @java.lang.Override public io.etcd.jetcd.api.LeaderKey build() { io.etcd.jetcd.api.LeaderKey result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.etcd.jetcd.api.LeaderKey buildPartial() { io.etcd.jetcd.api.LeaderKey result = new io.etcd.jetcd.api.LeaderKey(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(io.etcd.jetcd.api.LeaderKey result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.name_ = name_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.key_ = key_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.rev_ = rev_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.lease_ = lease_; } } @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 io.etcd.jetcd.api.LeaderKey) { return mergeFrom((io.etcd.jetcd.api.LeaderKey)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.etcd.jetcd.api.LeaderKey other) { if (other == io.etcd.jetcd.api.LeaderKey.getDefaultInstance()) return this; if (other.getName() != com.google.protobuf.ByteString.EMPTY) { setName(other.getName()); } if (other.getKey() != com.google.protobuf.ByteString.EMPTY) { setKey(other.getKey()); } if (other.getRev() != 0L) { setRev(other.getRev()); } if (other.getLease() != 0L) { setLease(other.getLease()); } 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: { name_ = input.readBytes(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { key_ = input.readBytes(); bitField0_ |= 0x00000002; break; } // case 18 case 24: { rev_ = input.readInt64(); bitField0_ |= 0x00000004; break; } // case 24 case 32: { lease_ = input.readInt64(); bitField0_ |= 0x00000008; break; } // case 32 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.google.protobuf.ByteString name_ = com.google.protobuf.ByteString.EMPTY; /** *
     * name is the election identifier that correponds to the leadership key.
     * 
* * bytes name = 1; * @return The name. */ @java.lang.Override public com.google.protobuf.ByteString getName() { return name_; } /** *
     * name is the election identifier that correponds to the leadership key.
     * 
* * bytes name = 1; * @param value The name to set. * @return This builder for chaining. */ public Builder setName(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } name_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * name is the election identifier that correponds to the leadership key.
     * 
* * bytes name = 1; * @return This builder for chaining. */ public Builder clearName() { bitField0_ = (bitField0_ & ~0x00000001); name_ = getDefaultInstance().getName(); onChanged(); return this; } private com.google.protobuf.ByteString key_ = com.google.protobuf.ByteString.EMPTY; /** *
     * key is an opaque key representing the ownership of the election. If the key
     * is deleted, then leadership is lost.
     * 
* * bytes key = 2; * @return The key. */ @java.lang.Override public com.google.protobuf.ByteString getKey() { return key_; } /** *
     * key is an opaque key representing the ownership of the election. If the key
     * is deleted, then leadership is lost.
     * 
* * bytes key = 2; * @param value The key to set. * @return This builder for chaining. */ public Builder setKey(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } key_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     * key is an opaque key representing the ownership of the election. If the key
     * is deleted, then leadership is lost.
     * 
* * bytes key = 2; * @return This builder for chaining. */ public Builder clearKey() { bitField0_ = (bitField0_ & ~0x00000002); key_ = getDefaultInstance().getKey(); onChanged(); return this; } private long rev_ ; /** *
     * rev is the creation revision of the key. It can be used to test for ownership
     * of an election during transactions by testing the key's creation revision
     * matches rev.
     * 
* * int64 rev = 3; * @return The rev. */ @java.lang.Override public long getRev() { return rev_; } /** *
     * rev is the creation revision of the key. It can be used to test for ownership
     * of an election during transactions by testing the key's creation revision
     * matches rev.
     * 
* * int64 rev = 3; * @param value The rev to set. * @return This builder for chaining. */ public Builder setRev(long value) { rev_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     * rev is the creation revision of the key. It can be used to test for ownership
     * of an election during transactions by testing the key's creation revision
     * matches rev.
     * 
* * int64 rev = 3; * @return This builder for chaining. */ public Builder clearRev() { bitField0_ = (bitField0_ & ~0x00000004); rev_ = 0L; onChanged(); return this; } private long lease_ ; /** *
     * lease is the lease ID of the election leader.
     * 
* * int64 lease = 4; * @return The lease. */ @java.lang.Override public long getLease() { return lease_; } /** *
     * lease is the lease ID of the election leader.
     * 
* * int64 lease = 4; * @param value The lease to set. * @return This builder for chaining. */ public Builder setLease(long value) { lease_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * lease is the lease ID of the election leader.
     * 
* * int64 lease = 4; * @return This builder for chaining. */ public Builder clearLease() { bitField0_ = (bitField0_ & ~0x00000008); lease_ = 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:v3electionpb.LeaderKey) } // @@protoc_insertion_point(class_scope:v3electionpb.LeaderKey) private static final io.etcd.jetcd.api.LeaderKey DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.etcd.jetcd.api.LeaderKey(); } public static io.etcd.jetcd.api.LeaderKey getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public LeaderKey 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 io.etcd.jetcd.api.LeaderKey getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy