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

com.hederahashgraph.api.proto.java.FileGetContentsResponse Maven / Gradle / Ivy

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

package com.hederahashgraph.api.proto.java;

/**
 * 
 **
 * Response when the client sends the node FileGetContentsQuery
 * 
* * Protobuf type {@code proto.FileGetContentsResponse} */ public final class FileGetContentsResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.FileGetContentsResponse) FileGetContentsResponseOrBuilder { private static final long serialVersionUID = 0L; // Use FileGetContentsResponse.newBuilder() to construct. private FileGetContentsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private FileGetContentsResponse() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new FileGetContentsResponse(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private FileGetContentsResponse( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } 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; case 10: { com.hederahashgraph.api.proto.java.ResponseHeader.Builder subBuilder = null; if (header_ != null) { subBuilder = header_.toBuilder(); } header_ = input.readMessage(com.hederahashgraph.api.proto.java.ResponseHeader.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(header_); header_ = subBuilder.buildPartial(); } break; } case 18: { com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder subBuilder = null; if (fileContents_ != null) { subBuilder = fileContents_.toBuilder(); } fileContents_ = input.readMessage(com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(fileContents_); fileContents_ = subBuilder.buildPartial(); } break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } 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 com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.FileGetContentsResponse.class, com.hederahashgraph.api.proto.java.FileGetContentsResponse.Builder.class); } public interface FileContentsOrBuilder extends // @@protoc_insertion_point(interface_extends:proto.FileGetContentsResponse.FileContents) com.google.protobuf.MessageOrBuilder { /** *
     **
     * The file ID of the file whose contents are being returned
     * 
* * .proto.FileID fileID = 1; * @return Whether the fileID field is set. */ boolean hasFileID(); /** *
     **
     * The file ID of the file whose contents are being returned
     * 
* * .proto.FileID fileID = 1; * @return The fileID. */ com.hederahashgraph.api.proto.java.FileID getFileID(); /** *
     **
     * The file ID of the file whose contents are being returned
     * 
* * .proto.FileID fileID = 1; */ com.hederahashgraph.api.proto.java.FileIDOrBuilder getFileIDOrBuilder(); /** *
     **
     * The bytes contained in the file
     * 
* * bytes contents = 2; * @return The contents. */ com.google.protobuf.ByteString getContents(); } /** * Protobuf type {@code proto.FileGetContentsResponse.FileContents} */ public static final class FileContents extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.FileGetContentsResponse.FileContents) FileContentsOrBuilder { private static final long serialVersionUID = 0L; // Use FileContents.newBuilder() to construct. private FileContents(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private FileContents() { contents_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new FileContents(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private FileContents( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } 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; case 10: { com.hederahashgraph.api.proto.java.FileID.Builder subBuilder = null; if (fileID_ != null) { subBuilder = fileID_.toBuilder(); } fileID_ = input.readMessage(com.hederahashgraph.api.proto.java.FileID.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(fileID_); fileID_ = subBuilder.buildPartial(); } break; } case 18: { contents_ = input.readBytes(); break; } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { done = true; } 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 com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_FileContents_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_FileContents_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.class, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder.class); } public static final int FILEID_FIELD_NUMBER = 1; private com.hederahashgraph.api.proto.java.FileID fileID_; /** *
     **
     * The file ID of the file whose contents are being returned
     * 
* * .proto.FileID fileID = 1; * @return Whether the fileID field is set. */ @java.lang.Override public boolean hasFileID() { return fileID_ != null; } /** *
     **
     * The file ID of the file whose contents are being returned
     * 
* * .proto.FileID fileID = 1; * @return The fileID. */ @java.lang.Override public com.hederahashgraph.api.proto.java.FileID getFileID() { return fileID_ == null ? com.hederahashgraph.api.proto.java.FileID.getDefaultInstance() : fileID_; } /** *
     **
     * The file ID of the file whose contents are being returned
     * 
* * .proto.FileID fileID = 1; */ @java.lang.Override public com.hederahashgraph.api.proto.java.FileIDOrBuilder getFileIDOrBuilder() { return getFileID(); } public static final int CONTENTS_FIELD_NUMBER = 2; private com.google.protobuf.ByteString contents_; /** *
     **
     * The bytes contained in the file
     * 
* * bytes contents = 2; * @return The contents. */ @java.lang.Override public com.google.protobuf.ByteString getContents() { return contents_; } 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 (fileID_ != null) { output.writeMessage(1, getFileID()); } if (!contents_.isEmpty()) { output.writeBytes(2, contents_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (fileID_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getFileID()); } if (!contents_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(2, contents_); } 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 com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents)) { return super.equals(obj); } com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents other = (com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents) obj; if (hasFileID() != other.hasFileID()) return false; if (hasFileID()) { if (!getFileID() .equals(other.getFileID())) return false; } if (!getContents() .equals(other.getContents())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasFileID()) { hash = (37 * hash) + FILEID_FIELD_NUMBER; hash = (53 * hash) + getFileID().hashCode(); } hash = (37 * hash) + CONTENTS_FIELD_NUMBER; hash = (53 * hash) + getContents().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents 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.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents 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.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents 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.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents 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 proto.FileGetContentsResponse.FileContents} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.FileGetContentsResponse.FileContents) com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContentsOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_FileContents_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_FileContents_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.class, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder.class); } // Construct using com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); if (fileIDBuilder_ == null) { fileID_ = null; } else { fileID_ = null; fileIDBuilder_ = null; } contents_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_FileContents_descriptor; } @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents getDefaultInstanceForType() { return com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.getDefaultInstance(); } @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents build() { com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents buildPartial() { com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents result = new com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents(this); if (fileIDBuilder_ == null) { result.fileID_ = fileID_; } else { result.fileID_ = fileIDBuilder_.build(); } result.contents_ = contents_; 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 com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents) { return mergeFrom((com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents other) { if (other == com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.getDefaultInstance()) return this; if (other.hasFileID()) { mergeFileID(other.getFileID()); } if (other.getContents() != com.google.protobuf.ByteString.EMPTY) { setContents(other.getContents()); } this.mergeUnknownFields(other.unknownFields); 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 { com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private com.hederahashgraph.api.proto.java.FileID fileID_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.FileID, com.hederahashgraph.api.proto.java.FileID.Builder, com.hederahashgraph.api.proto.java.FileIDOrBuilder> fileIDBuilder_; /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; * @return Whether the fileID field is set. */ public boolean hasFileID() { return fileIDBuilder_ != null || fileID_ != null; } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; * @return The fileID. */ public com.hederahashgraph.api.proto.java.FileID getFileID() { if (fileIDBuilder_ == null) { return fileID_ == null ? com.hederahashgraph.api.proto.java.FileID.getDefaultInstance() : fileID_; } else { return fileIDBuilder_.getMessage(); } } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ public Builder setFileID(com.hederahashgraph.api.proto.java.FileID value) { if (fileIDBuilder_ == null) { if (value == null) { throw new NullPointerException(); } fileID_ = value; onChanged(); } else { fileIDBuilder_.setMessage(value); } return this; } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ public Builder setFileID( com.hederahashgraph.api.proto.java.FileID.Builder builderForValue) { if (fileIDBuilder_ == null) { fileID_ = builderForValue.build(); onChanged(); } else { fileIDBuilder_.setMessage(builderForValue.build()); } return this; } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ public Builder mergeFileID(com.hederahashgraph.api.proto.java.FileID value) { if (fileIDBuilder_ == null) { if (fileID_ != null) { fileID_ = com.hederahashgraph.api.proto.java.FileID.newBuilder(fileID_).mergeFrom(value).buildPartial(); } else { fileID_ = value; } onChanged(); } else { fileIDBuilder_.mergeFrom(value); } return this; } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ public Builder clearFileID() { if (fileIDBuilder_ == null) { fileID_ = null; onChanged(); } else { fileID_ = null; fileIDBuilder_ = null; } return this; } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ public com.hederahashgraph.api.proto.java.FileID.Builder getFileIDBuilder() { onChanged(); return getFileIDFieldBuilder().getBuilder(); } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ public com.hederahashgraph.api.proto.java.FileIDOrBuilder getFileIDOrBuilder() { if (fileIDBuilder_ != null) { return fileIDBuilder_.getMessageOrBuilder(); } else { return fileID_ == null ? com.hederahashgraph.api.proto.java.FileID.getDefaultInstance() : fileID_; } } /** *
       **
       * The file ID of the file whose contents are being returned
       * 
* * .proto.FileID fileID = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.FileID, com.hederahashgraph.api.proto.java.FileID.Builder, com.hederahashgraph.api.proto.java.FileIDOrBuilder> getFileIDFieldBuilder() { if (fileIDBuilder_ == null) { fileIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.FileID, com.hederahashgraph.api.proto.java.FileID.Builder, com.hederahashgraph.api.proto.java.FileIDOrBuilder>( getFileID(), getParentForChildren(), isClean()); fileID_ = null; } return fileIDBuilder_; } private com.google.protobuf.ByteString contents_ = com.google.protobuf.ByteString.EMPTY; /** *
       **
       * The bytes contained in the file
       * 
* * bytes contents = 2; * @return The contents. */ @java.lang.Override public com.google.protobuf.ByteString getContents() { return contents_; } /** *
       **
       * The bytes contained in the file
       * 
* * bytes contents = 2; * @param value The contents to set. * @return This builder for chaining. */ public Builder setContents(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } contents_ = value; onChanged(); return this; } /** *
       **
       * The bytes contained in the file
       * 
* * bytes contents = 2; * @return This builder for chaining. */ public Builder clearContents() { contents_ = getDefaultInstance().getContents(); 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:proto.FileGetContentsResponse.FileContents) } // @@protoc_insertion_point(class_scope:proto.FileGetContentsResponse.FileContents) private static final com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents(); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public FileContents parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new FileContents(input, extensionRegistry); } }; 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.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents getDefaultInstanceForType() { return DEFAULT_INSTANCE; } } public static final int HEADER_FIELD_NUMBER = 1; private com.hederahashgraph.api.proto.java.ResponseHeader header_; /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither
   * 
* * .proto.ResponseHeader header = 1; * @return Whether the header field is set. */ @java.lang.Override public boolean hasHeader() { return header_ != null; } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither
   * 
* * .proto.ResponseHeader header = 1; * @return The header. */ @java.lang.Override public com.hederahashgraph.api.proto.java.ResponseHeader getHeader() { return header_ == null ? com.hederahashgraph.api.proto.java.ResponseHeader.getDefaultInstance() : header_; } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither
   * 
* * .proto.ResponseHeader header = 1; */ @java.lang.Override public com.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder getHeaderOrBuilder() { return getHeader(); } public static final int FILECONTENTS_FIELD_NUMBER = 2; private com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents fileContents_; /** *
   **
   * the file ID and contents (a state proof can be generated for this)
   * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; * @return Whether the fileContents field is set. */ @java.lang.Override public boolean hasFileContents() { return fileContents_ != null; } /** *
   **
   * the file ID and contents (a state proof can be generated for this)
   * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; * @return The fileContents. */ @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents getFileContents() { return fileContents_ == null ? com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.getDefaultInstance() : fileContents_; } /** *
   **
   * the file ID and contents (a state proof can be generated for this)
   * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContentsOrBuilder getFileContentsOrBuilder() { return getFileContents(); } 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 (fileContents_ != null) { output.writeMessage(2, getFileContents()); } unknownFields.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 (fileContents_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getFileContents()); } 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 com.hederahashgraph.api.proto.java.FileGetContentsResponse)) { return super.equals(obj); } com.hederahashgraph.api.proto.java.FileGetContentsResponse other = (com.hederahashgraph.api.proto.java.FileGetContentsResponse) obj; if (hasHeader() != other.hasHeader()) return false; if (hasHeader()) { if (!getHeader() .equals(other.getHeader())) return false; } if (hasFileContents() != other.hasFileContents()) return false; if (hasFileContents()) { if (!getFileContents() .equals(other.getFileContents())) return false; } if (!unknownFields.equals(other.unknownFields)) 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(); } if (hasFileContents()) { hash = (37 * hash) + FILECONTENTS_FIELD_NUMBER; hash = (53 * hash) + getFileContents().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse 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.hederahashgraph.api.proto.java.FileGetContentsResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse 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.hederahashgraph.api.proto.java.FileGetContentsResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse 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.hederahashgraph.api.proto.java.FileGetContentsResponse 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; } /** *
   **
   * Response when the client sends the node FileGetContentsQuery
   * 
* * Protobuf type {@code proto.FileGetContentsResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.FileGetContentsResponse) com.hederahashgraph.api.proto.java.FileGetContentsResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.FileGetContentsResponse.class, com.hederahashgraph.api.proto.java.FileGetContentsResponse.Builder.class); } // Construct using com.hederahashgraph.api.proto.java.FileGetContentsResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } @java.lang.Override public Builder clear() { super.clear(); if (headerBuilder_ == null) { header_ = null; } else { header_ = null; headerBuilder_ = null; } if (fileContentsBuilder_ == null) { fileContents_ = null; } else { fileContents_ = null; fileContentsBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hederahashgraph.api.proto.java.FileGetContents.internal_static_proto_FileGetContentsResponse_descriptor; } @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse getDefaultInstanceForType() { return com.hederahashgraph.api.proto.java.FileGetContentsResponse.getDefaultInstance(); } @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse build() { com.hederahashgraph.api.proto.java.FileGetContentsResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hederahashgraph.api.proto.java.FileGetContentsResponse buildPartial() { com.hederahashgraph.api.proto.java.FileGetContentsResponse result = new com.hederahashgraph.api.proto.java.FileGetContentsResponse(this); if (headerBuilder_ == null) { result.header_ = header_; } else { result.header_ = headerBuilder_.build(); } if (fileContentsBuilder_ == null) { result.fileContents_ = fileContents_; } else { result.fileContents_ = fileContentsBuilder_.build(); } 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 com.hederahashgraph.api.proto.java.FileGetContentsResponse) { return mergeFrom((com.hederahashgraph.api.proto.java.FileGetContentsResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hederahashgraph.api.proto.java.FileGetContentsResponse other) { if (other == com.hederahashgraph.api.proto.java.FileGetContentsResponse.getDefaultInstance()) return this; if (other.hasHeader()) { mergeHeader(other.getHeader()); } if (other.hasFileContents()) { mergeFileContents(other.getFileContents()); } this.mergeUnknownFields(other.unknownFields); 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 { com.hederahashgraph.api.proto.java.FileGetContentsResponse parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.hederahashgraph.api.proto.java.FileGetContentsResponse) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private com.hederahashgraph.api.proto.java.ResponseHeader header_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ResponseHeader, com.hederahashgraph.api.proto.java.ResponseHeader.Builder, com.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder> headerBuilder_; /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; * @return Whether the header field is set. */ public boolean hasHeader() { return headerBuilder_ != null || header_ != null; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; * @return The header. */ public com.hederahashgraph.api.proto.java.ResponseHeader getHeader() { if (headerBuilder_ == null) { return header_ == null ? com.hederahashgraph.api.proto.java.ResponseHeader.getDefaultInstance() : header_; } else { return headerBuilder_.getMessage(); } } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder setHeader(com.hederahashgraph.api.proto.java.ResponseHeader value) { if (headerBuilder_ == null) { if (value == null) { throw new NullPointerException(); } header_ = value; onChanged(); } else { headerBuilder_.setMessage(value); } return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder setHeader( com.hederahashgraph.api.proto.java.ResponseHeader.Builder builderForValue) { if (headerBuilder_ == null) { header_ = builderForValue.build(); onChanged(); } else { headerBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder mergeHeader(com.hederahashgraph.api.proto.java.ResponseHeader value) { if (headerBuilder_ == null) { if (header_ != null) { header_ = com.hederahashgraph.api.proto.java.ResponseHeader.newBuilder(header_).mergeFrom(value).buildPartial(); } else { header_ = value; } onChanged(); } else { headerBuilder_.mergeFrom(value); } return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public Builder clearHeader() { if (headerBuilder_ == null) { header_ = null; onChanged(); } else { header_ = null; headerBuilder_ = null; } return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public com.hederahashgraph.api.proto.java.ResponseHeader.Builder getHeaderBuilder() { onChanged(); return getHeaderFieldBuilder().getBuilder(); } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ public com.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder getHeaderOrBuilder() { if (headerBuilder_ != null) { return headerBuilder_.getMessageOrBuilder(); } else { return header_ == null ? com.hederahashgraph.api.proto.java.ResponseHeader.getDefaultInstance() : header_; } } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither
     * 
* * .proto.ResponseHeader header = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ResponseHeader, com.hederahashgraph.api.proto.java.ResponseHeader.Builder, com.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder> getHeaderFieldBuilder() { if (headerBuilder_ == null) { headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ResponseHeader, com.hederahashgraph.api.proto.java.ResponseHeader.Builder, com.hederahashgraph.api.proto.java.ResponseHeaderOrBuilder>( getHeader(), getParentForChildren(), isClean()); header_ = null; } return headerBuilder_; } private com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents fileContents_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContentsOrBuilder> fileContentsBuilder_; /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; * @return Whether the fileContents field is set. */ public boolean hasFileContents() { return fileContentsBuilder_ != null || fileContents_ != null; } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; * @return The fileContents. */ public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents getFileContents() { if (fileContentsBuilder_ == null) { return fileContents_ == null ? com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.getDefaultInstance() : fileContents_; } else { return fileContentsBuilder_.getMessage(); } } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ public Builder setFileContents(com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents value) { if (fileContentsBuilder_ == null) { if (value == null) { throw new NullPointerException(); } fileContents_ = value; onChanged(); } else { fileContentsBuilder_.setMessage(value); } return this; } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ public Builder setFileContents( com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder builderForValue) { if (fileContentsBuilder_ == null) { fileContents_ = builderForValue.build(); onChanged(); } else { fileContentsBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ public Builder mergeFileContents(com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents value) { if (fileContentsBuilder_ == null) { if (fileContents_ != null) { fileContents_ = com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.newBuilder(fileContents_).mergeFrom(value).buildPartial(); } else { fileContents_ = value; } onChanged(); } else { fileContentsBuilder_.mergeFrom(value); } return this; } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ public Builder clearFileContents() { if (fileContentsBuilder_ == null) { fileContents_ = null; onChanged(); } else { fileContents_ = null; fileContentsBuilder_ = null; } return this; } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder getFileContentsBuilder() { onChanged(); return getFileContentsFieldBuilder().getBuilder(); } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ public com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContentsOrBuilder getFileContentsOrBuilder() { if (fileContentsBuilder_ != null) { return fileContentsBuilder_.getMessageOrBuilder(); } else { return fileContents_ == null ? com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.getDefaultInstance() : fileContents_; } } /** *
     **
     * the file ID and contents (a state proof can be generated for this)
     * 
* * .proto.FileGetContentsResponse.FileContents fileContents = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContentsOrBuilder> getFileContentsFieldBuilder() { if (fileContentsBuilder_ == null) { fileContentsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContents.Builder, com.hederahashgraph.api.proto.java.FileGetContentsResponse.FileContentsOrBuilder>( getFileContents(), getParentForChildren(), isClean()); fileContents_ = null; } return fileContentsBuilder_; } @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:proto.FileGetContentsResponse) } // @@protoc_insertion_point(class_scope:proto.FileGetContentsResponse) private static final com.hederahashgraph.api.proto.java.FileGetContentsResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.FileGetContentsResponse(); } public static com.hederahashgraph.api.proto.java.FileGetContentsResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public FileGetContentsResponse parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new FileGetContentsResponse(input, extensionRegistry); } }; 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.hederahashgraph.api.proto.java.FileGetContentsResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy