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

io.helidon.config.etcd.internal.client.proto.SnapshotResponse Maven / Gradle / Ivy

There is a newer version: 4.0.10
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: rpc.proto

package io.helidon.config.etcd.internal.client.proto;

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private SnapshotResponse(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    int mutable_bitField0_ = 0;
    com.google.protobuf.UnknownFieldSet.Builder unknownFields =
        com.google.protobuf.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          default: {
            if (!parseUnknownFieldProto3(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
          case 10: {
            io.helidon.config.etcd.internal.client.proto.ResponseHeader.Builder subBuilder = null;
            if (header_ != null) {
              subBuilder = header_.toBuilder();
            }
            header_ = input.readMessage(io.helidon.config.etcd.internal.client.proto.ResponseHeader.parser(), extensionRegistry);
            if (subBuilder != null) {
              subBuilder.mergeFrom(header_);
              header_ = subBuilder.buildPartial();
            }

            break;
          }
          case 16: {

            remainingBytes_ = input.readUInt64();
            break;
          }
          case 26: {

            blob_ = input.readBytes();
            break;
          }
        }
      }
    } catch (com.google.protobuf.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new com.google.protobuf.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_descriptor;
  }

  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            io.helidon.config.etcd.internal.client.proto.SnapshotResponse.class, io.helidon.config.etcd.internal.client.proto.SnapshotResponse.Builder.class);
  }

  public static final int HEADER_FIELD_NUMBER = 1;
  private io.helidon.config.etcd.internal.client.proto.ResponseHeader header_;
  /**
   * 
   * header has the current key-value store information. The first header in the snapshot
   * stream indicates the point in time of the snapshot.
   * 
* * .etcdserverpb.ResponseHeader header = 1; */ public boolean hasHeader() { return header_ != null; } /** *
   * header has the current key-value store information. The first header in the snapshot
   * stream indicates the point in time of the snapshot.
   * 
* * .etcdserverpb.ResponseHeader header = 1; */ public io.helidon.config.etcd.internal.client.proto.ResponseHeader getHeader() { return header_ == null ? io.helidon.config.etcd.internal.client.proto.ResponseHeader.getDefaultInstance() : header_; } /** *
   * header has the current key-value store information. The first header in the snapshot
   * stream indicates the point in time of the snapshot.
   * 
* * .etcdserverpb.ResponseHeader header = 1; */ public io.helidon.config.etcd.internal.client.proto.ResponseHeaderOrBuilder getHeaderOrBuilder() { return getHeader(); } public static final int REMAINING_BYTES_FIELD_NUMBER = 2; private long remainingBytes_; /** *
   * remaining_bytes is the number of blob bytes to be sent after this message
   * 
* * uint64 remaining_bytes = 2; */ public long getRemainingBytes() { return remainingBytes_; } public static final int BLOB_FIELD_NUMBER = 3; private com.google.protobuf.ByteString blob_; /** *
   * blob contains the next chunk of the snapshot in the snapshot stream.
   * 
* * bytes blob = 3; */ public com.google.protobuf.ByteString getBlob() { return blob_; } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (header_ != null) { output.writeMessage(1, getHeader()); } if (remainingBytes_ != 0L) { output.writeUInt64(2, remainingBytes_); } if (!blob_.isEmpty()) { output.writeBytes(3, blob_); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (header_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getHeader()); } if (remainingBytes_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeUInt64Size(2, remainingBytes_); } if (!blob_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(3, blob_); } size += unknownFields.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.helidon.config.etcd.internal.client.proto.SnapshotResponse)) { return super.equals(obj); } io.helidon.config.etcd.internal.client.proto.SnapshotResponse other = (io.helidon.config.etcd.internal.client.proto.SnapshotResponse) obj; boolean result = true; result = result && (hasHeader() == other.hasHeader()); if (hasHeader()) { result = result && getHeader() .equals(other.getHeader()); } result = result && (getRemainingBytes() == other.getRemainingBytes()); result = result && getBlob() .equals(other.getBlob()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasHeader()) { hash = (37 * hash) + HEADER_FIELD_NUMBER; hash = (53 * hash) + getHeader().hashCode(); } hash = (37 * hash) + REMAINING_BYTES_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getRemainingBytes()); hash = (37 * hash) + BLOB_FIELD_NUMBER; hash = (53 * hash) + getBlob().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse 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.helidon.config.etcd.internal.client.proto.SnapshotResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse 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.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(io.helidon.config.etcd.internal.client.proto.SnapshotResponse prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } 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 etcdserverpb.SnapshotResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:etcdserverpb.SnapshotResponse) io.helidon.config.etcd.internal.client.proto.SnapshotResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( io.helidon.config.etcd.internal.client.proto.SnapshotResponse.class, io.helidon.config.etcd.internal.client.proto.SnapshotResponse.Builder.class); } // Construct using io.helidon.config.etcd.internal.client.proto.SnapshotResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } public Builder clear() { super.clear(); if (headerBuilder_ == null) { header_ = null; } else { header_ = null; headerBuilder_ = null; } remainingBytes_ = 0L; blob_ = com.google.protobuf.ByteString.EMPTY; return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_descriptor; } public io.helidon.config.etcd.internal.client.proto.SnapshotResponse getDefaultInstanceForType() { return io.helidon.config.etcd.internal.client.proto.SnapshotResponse.getDefaultInstance(); } public io.helidon.config.etcd.internal.client.proto.SnapshotResponse build() { io.helidon.config.etcd.internal.client.proto.SnapshotResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public io.helidon.config.etcd.internal.client.proto.SnapshotResponse buildPartial() { io.helidon.config.etcd.internal.client.proto.SnapshotResponse result = new io.helidon.config.etcd.internal.client.proto.SnapshotResponse(this); if (headerBuilder_ == null) { result.header_ = header_; } else { result.header_ = headerBuilder_.build(); } result.remainingBytes_ = remainingBytes_; result.blob_ = blob_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof io.helidon.config.etcd.internal.client.proto.SnapshotResponse) { return mergeFrom((io.helidon.config.etcd.internal.client.proto.SnapshotResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.helidon.config.etcd.internal.client.proto.SnapshotResponse other) { if (other == io.helidon.config.etcd.internal.client.proto.SnapshotResponse.getDefaultInstance()) return this; if (other.hasHeader()) { mergeHeader(other.getHeader()); } if (other.getRemainingBytes() != 0L) { setRemainingBytes(other.getRemainingBytes()); } if (other.getBlob() != com.google.protobuf.ByteString.EMPTY) { setBlob(other.getBlob()); } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { io.helidon.config.etcd.internal.client.proto.SnapshotResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (io.helidon.config.etcd.internal.client.proto.SnapshotResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private io.helidon.config.etcd.internal.client.proto.ResponseHeader header_ = null; private com.google.protobuf.SingleFieldBuilderV3< io.helidon.config.etcd.internal.client.proto.ResponseHeader, io.helidon.config.etcd.internal.client.proto.ResponseHeader.Builder, io.helidon.config.etcd.internal.client.proto.ResponseHeaderOrBuilder> headerBuilder_; /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public boolean hasHeader() { return headerBuilder_ != null || header_ != null; } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public io.helidon.config.etcd.internal.client.proto.ResponseHeader getHeader() { if (headerBuilder_ == null) { return header_ == null ? io.helidon.config.etcd.internal.client.proto.ResponseHeader.getDefaultInstance() : header_; } else { return headerBuilder_.getMessage(); } } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public Builder setHeader(io.helidon.config.etcd.internal.client.proto.ResponseHeader value) { if (headerBuilder_ == null) { if (value == null) { throw new NullPointerException(); } header_ = value; onChanged(); } else { headerBuilder_.setMessage(value); } return this; } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public Builder setHeader( io.helidon.config.etcd.internal.client.proto.ResponseHeader.Builder builderForValue) { if (headerBuilder_ == null) { header_ = builderForValue.build(); onChanged(); } else { headerBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public Builder mergeHeader(io.helidon.config.etcd.internal.client.proto.ResponseHeader value) { if (headerBuilder_ == null) { if (header_ != null) { header_ = io.helidon.config.etcd.internal.client.proto.ResponseHeader.newBuilder(header_).mergeFrom(value).buildPartial(); } else { header_ = value; } onChanged(); } else { headerBuilder_.mergeFrom(value); } return this; } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public Builder clearHeader() { if (headerBuilder_ == null) { header_ = null; onChanged(); } else { header_ = null; headerBuilder_ = null; } return this; } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public io.helidon.config.etcd.internal.client.proto.ResponseHeader.Builder getHeaderBuilder() { onChanged(); return getHeaderFieldBuilder().getBuilder(); } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ public io.helidon.config.etcd.internal.client.proto.ResponseHeaderOrBuilder getHeaderOrBuilder() { if (headerBuilder_ != null) { return headerBuilder_.getMessageOrBuilder(); } else { return header_ == null ? io.helidon.config.etcd.internal.client.proto.ResponseHeader.getDefaultInstance() : header_; } } /** *
     * header has the current key-value store information. The first header in the snapshot
     * stream indicates the point in time of the snapshot.
     * 
* * .etcdserverpb.ResponseHeader header = 1; */ private com.google.protobuf.SingleFieldBuilderV3< io.helidon.config.etcd.internal.client.proto.ResponseHeader, io.helidon.config.etcd.internal.client.proto.ResponseHeader.Builder, io.helidon.config.etcd.internal.client.proto.ResponseHeaderOrBuilder> getHeaderFieldBuilder() { if (headerBuilder_ == null) { headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< io.helidon.config.etcd.internal.client.proto.ResponseHeader, io.helidon.config.etcd.internal.client.proto.ResponseHeader.Builder, io.helidon.config.etcd.internal.client.proto.ResponseHeaderOrBuilder>( getHeader(), getParentForChildren(), isClean()); header_ = null; } return headerBuilder_; } private long remainingBytes_ ; /** *
     * remaining_bytes is the number of blob bytes to be sent after this message
     * 
* * uint64 remaining_bytes = 2; */ public long getRemainingBytes() { return remainingBytes_; } /** *
     * remaining_bytes is the number of blob bytes to be sent after this message
     * 
* * uint64 remaining_bytes = 2; */ public Builder setRemainingBytes(long value) { remainingBytes_ = value; onChanged(); return this; } /** *
     * remaining_bytes is the number of blob bytes to be sent after this message
     * 
* * uint64 remaining_bytes = 2; */ public Builder clearRemainingBytes() { remainingBytes_ = 0L; onChanged(); return this; } private com.google.protobuf.ByteString blob_ = com.google.protobuf.ByteString.EMPTY; /** *
     * blob contains the next chunk of the snapshot in the snapshot stream.
     * 
* * bytes blob = 3; */ public com.google.protobuf.ByteString getBlob() { return blob_; } /** *
     * blob contains the next chunk of the snapshot in the snapshot stream.
     * 
* * bytes blob = 3; */ public Builder setBlob(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } blob_ = value; onChanged(); return this; } /** *
     * blob contains the next chunk of the snapshot in the snapshot stream.
     * 
* * bytes blob = 3; */ public Builder clearBlob() { blob_ = getDefaultInstance().getBlob(); onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:etcdserverpb.SnapshotResponse) } // @@protoc_insertion_point(class_scope:etcdserverpb.SnapshotResponse) private static final io.helidon.config.etcd.internal.client.proto.SnapshotResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.helidon.config.etcd.internal.client.proto.SnapshotResponse(); } public static io.helidon.config.etcd.internal.client.proto.SnapshotResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public SnapshotResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new SnapshotResponse(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public io.helidon.config.etcd.internal.client.proto.SnapshotResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy