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() {
    blob_ = com.google.protobuf.ByteString.EMPTY;
  }

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

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_descriptor;
  }

  @java.lang.Override
  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; * @return Whether the header field is set. */ @java.lang.Override 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; * @return The header. */ @java.lang.Override 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; */ @java.lang.Override 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; * @return The remainingBytes. */ @java.lang.Override 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; * @return The blob. */ @java.lang.Override public com.google.protobuf.ByteString getBlob() { return blob_; } 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 (header_ != null) { output.writeMessage(1, getHeader()); } if (remainingBytes_ != 0L) { output.writeUInt64(2, remainingBytes_); } if (!blob_.isEmpty()) { output.writeBytes(3, blob_); } getUnknownFields().writeTo(output); } @java.lang.Override 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 += 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.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; if (hasHeader() != other.hasHeader()) return false; if (hasHeader()) { if (!getHeader() .equals(other.getHeader())) return false; } if (getRemainingBytes() != other.getRemainingBytes()) return false; if (!getBlob() .equals(other.getBlob())) 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 (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) + getUnknownFields().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); } @java.lang.Override 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); } @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 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; } @java.lang.Override 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() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override 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; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.helidon.config.etcd.internal.client.proto.EtcdProto.internal_static_etcdserverpb_SnapshotResponse_descriptor; } @java.lang.Override public io.helidon.config.etcd.internal.client.proto.SnapshotResponse getDefaultInstanceForType() { return io.helidon.config.etcd.internal.client.proto.SnapshotResponse.getDefaultInstance(); } @java.lang.Override 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; } @java.lang.Override 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; } @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.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.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( getHeaderFieldBuilder().getBuilder(), extensionRegistry); break; } // case 10 case 16: { remainingBytes_ = input.readUInt64(); break; } // case 16 case 26: { blob_ = input.readBytes(); break; } // case 26 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 io.helidon.config.etcd.internal.client.proto.ResponseHeader header_; 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; * @return Whether the header field is set. */ 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; * @return The header. */ 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; * @return The remainingBytes. */ @java.lang.Override public long getRemainingBytes() { return remainingBytes_; } /** *
     * remaining_bytes is the number of blob bytes to be sent after this message
     * 
* * uint64 remaining_bytes = 2; * @param value The remainingBytes to set. * @return This builder for chaining. */ 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; * @return This builder for chaining. */ 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; * @return The blob. */ @java.lang.Override public com.google.protobuf.ByteString getBlob() { return blob_; } /** *
     * blob contains the next chunk of the snapshot in the snapshot stream.
     * 
* * bytes blob = 3; * @param value The blob to set. * @return This builder for chaining. */ 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; * @return This builder for chaining. */ public Builder clearBlob() { blob_ = getDefaultInstance().getBlob(); 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: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() { @java.lang.Override public SnapshotResponse 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.helidon.config.etcd.internal.client.proto.SnapshotResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy