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

com.hedera.hashgraph.sdk.proto.RunningHashes Maven / Gradle / Ivy

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

// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;

/**
 * 
 **
 * The running hash of a transaction records and the previous 3 running hashes. All hashes are 48 bytes SHA384 hashes. If the
 * running hashes do not exist yet then they will be default values witch is empty bytes object or zero length byte array.
 * 
* * Protobuf type {@code proto.RunningHashes} */ public final class RunningHashes extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.RunningHashes) RunningHashesOrBuilder { private static final long serialVersionUID = 0L; // Use RunningHashes.newBuilder() to construct. private RunningHashes(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private RunningHashes() { runningHash_ = com.google.protobuf.ByteString.EMPTY; nMinus1RunningHash_ = com.google.protobuf.ByteString.EMPTY; nMinus2RunningHash_ = com.google.protobuf.ByteString.EMPTY; nMinus3RunningHash_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new RunningHashes(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.RunningHashesOuterClass.internal_static_proto_RunningHashes_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.RunningHashesOuterClass.internal_static_proto_RunningHashes_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.RunningHashes.class, com.hedera.hashgraph.sdk.proto.RunningHashes.Builder.class); } public static final int RUNNING_HASH_FIELD_NUMBER = 1; private com.google.protobuf.ByteString runningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
   **
   * A running hash of all record stream items
   * 
* * bytes running_hash = 1; * @return The runningHash. */ @java.lang.Override public com.google.protobuf.ByteString getRunningHash() { return runningHash_; } public static final int N_MINUS_1_RUNNING_HASH_FIELD_NUMBER = 2; private com.google.protobuf.ByteString nMinus1RunningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
   **
   * The previous running hash of all record stream items
   * 
* * bytes n_minus_1_running_hash = 2; * @return The nMinus1RunningHash. */ @java.lang.Override public com.google.protobuf.ByteString getNMinus1RunningHash() { return nMinus1RunningHash_; } public static final int N_MINUS_2_RUNNING_HASH_FIELD_NUMBER = 3; private com.google.protobuf.ByteString nMinus2RunningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
   **
   * The previous, previous running hash of all record stream items
   * 
* * bytes n_minus_2_running_hash = 3; * @return The nMinus2RunningHash. */ @java.lang.Override public com.google.protobuf.ByteString getNMinus2RunningHash() { return nMinus2RunningHash_; } public static final int N_MINUS_3_RUNNING_HASH_FIELD_NUMBER = 4; private com.google.protobuf.ByteString nMinus3RunningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
   **
   * The previous, previous, previous running hash of all record stream items
   * 
* * bytes n_minus_3_running_hash = 4; * @return The nMinus3RunningHash. */ @java.lang.Override public com.google.protobuf.ByteString getNMinus3RunningHash() { return nMinus3RunningHash_; } 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 (!runningHash_.isEmpty()) { output.writeBytes(1, runningHash_); } if (!nMinus1RunningHash_.isEmpty()) { output.writeBytes(2, nMinus1RunningHash_); } if (!nMinus2RunningHash_.isEmpty()) { output.writeBytes(3, nMinus2RunningHash_); } if (!nMinus3RunningHash_.isEmpty()) { output.writeBytes(4, nMinus3RunningHash_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!runningHash_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(1, runningHash_); } if (!nMinus1RunningHash_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(2, nMinus1RunningHash_); } if (!nMinus2RunningHash_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(3, nMinus2RunningHash_); } if (!nMinus3RunningHash_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(4, nMinus3RunningHash_); } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof com.hedera.hashgraph.sdk.proto.RunningHashes)) { return super.equals(obj); } com.hedera.hashgraph.sdk.proto.RunningHashes other = (com.hedera.hashgraph.sdk.proto.RunningHashes) obj; if (!getRunningHash() .equals(other.getRunningHash())) return false; if (!getNMinus1RunningHash() .equals(other.getNMinus1RunningHash())) return false; if (!getNMinus2RunningHash() .equals(other.getNMinus2RunningHash())) return false; if (!getNMinus3RunningHash() .equals(other.getNMinus3RunningHash())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + RUNNING_HASH_FIELD_NUMBER; hash = (53 * hash) + getRunningHash().hashCode(); hash = (37 * hash) + N_MINUS_1_RUNNING_HASH_FIELD_NUMBER; hash = (53 * hash) + getNMinus1RunningHash().hashCode(); hash = (37 * hash) + N_MINUS_2_RUNNING_HASH_FIELD_NUMBER; hash = (53 * hash) + getNMinus2RunningHash().hashCode(); hash = (37 * hash) + N_MINUS_3_RUNNING_HASH_FIELD_NUMBER; hash = (53 * hash) + getNMinus3RunningHash().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.RunningHashes parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.RunningHashes 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.hedera.hashgraph.sdk.proto.RunningHashes parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.RunningHashes 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.hedera.hashgraph.sdk.proto.RunningHashes parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.RunningHashes 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.hedera.hashgraph.sdk.proto.RunningHashes 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; } /** *
   **
   * The running hash of a transaction records and the previous 3 running hashes. All hashes are 48 bytes SHA384 hashes. If the
   * running hashes do not exist yet then they will be default values witch is empty bytes object or zero length byte array.
   * 
* * Protobuf type {@code proto.RunningHashes} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.RunningHashes) com.hedera.hashgraph.sdk.proto.RunningHashesOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.RunningHashesOuterClass.internal_static_proto_RunningHashes_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.RunningHashesOuterClass.internal_static_proto_RunningHashes_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.RunningHashes.class, com.hedera.hashgraph.sdk.proto.RunningHashes.Builder.class); } // Construct using com.hedera.hashgraph.sdk.proto.RunningHashes.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; runningHash_ = com.google.protobuf.ByteString.EMPTY; nMinus1RunningHash_ = com.google.protobuf.ByteString.EMPTY; nMinus2RunningHash_ = com.google.protobuf.ByteString.EMPTY; nMinus3RunningHash_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hedera.hashgraph.sdk.proto.RunningHashesOuterClass.internal_static_proto_RunningHashes_descriptor; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.RunningHashes getDefaultInstanceForType() { return com.hedera.hashgraph.sdk.proto.RunningHashes.getDefaultInstance(); } @java.lang.Override public com.hedera.hashgraph.sdk.proto.RunningHashes build() { com.hedera.hashgraph.sdk.proto.RunningHashes result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.RunningHashes buildPartial() { com.hedera.hashgraph.sdk.proto.RunningHashes result = new com.hedera.hashgraph.sdk.proto.RunningHashes(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.hedera.hashgraph.sdk.proto.RunningHashes result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.runningHash_ = runningHash_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.nMinus1RunningHash_ = nMinus1RunningHash_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.nMinus2RunningHash_ = nMinus2RunningHash_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.nMinus3RunningHash_ = nMinus3RunningHash_; } } @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.hedera.hashgraph.sdk.proto.RunningHashes) { return mergeFrom((com.hedera.hashgraph.sdk.proto.RunningHashes)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.RunningHashes other) { if (other == com.hedera.hashgraph.sdk.proto.RunningHashes.getDefaultInstance()) return this; if (other.getRunningHash() != com.google.protobuf.ByteString.EMPTY) { setRunningHash(other.getRunningHash()); } if (other.getNMinus1RunningHash() != com.google.protobuf.ByteString.EMPTY) { setNMinus1RunningHash(other.getNMinus1RunningHash()); } if (other.getNMinus2RunningHash() != com.google.protobuf.ByteString.EMPTY) { setNMinus2RunningHash(other.getNMinus2RunningHash()); } if (other.getNMinus3RunningHash() != com.google.protobuf.ByteString.EMPTY) { setNMinus3RunningHash(other.getNMinus3RunningHash()); } 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: { runningHash_ = input.readBytes(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { nMinus1RunningHash_ = input.readBytes(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { nMinus2RunningHash_ = input.readBytes(); bitField0_ |= 0x00000004; break; } // case 26 case 34: { nMinus3RunningHash_ = input.readBytes(); bitField0_ |= 0x00000008; break; } // case 34 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { done = true; // was an endgroup tag } break; } // default: } // switch (tag) } // while (!done) } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.unwrapIOException(); } finally { onChanged(); } // finally return this; } private int bitField0_; private com.google.protobuf.ByteString runningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
     **
     * A running hash of all record stream items
     * 
* * bytes running_hash = 1; * @return The runningHash. */ @java.lang.Override public com.google.protobuf.ByteString getRunningHash() { return runningHash_; } /** *
     **
     * A running hash of all record stream items
     * 
* * bytes running_hash = 1; * @param value The runningHash to set. * @return This builder for chaining. */ public Builder setRunningHash(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } runningHash_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * A running hash of all record stream items
     * 
* * bytes running_hash = 1; * @return This builder for chaining. */ public Builder clearRunningHash() { bitField0_ = (bitField0_ & ~0x00000001); runningHash_ = getDefaultInstance().getRunningHash(); onChanged(); return this; } private com.google.protobuf.ByteString nMinus1RunningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
     **
     * The previous running hash of all record stream items
     * 
* * bytes n_minus_1_running_hash = 2; * @return The nMinus1RunningHash. */ @java.lang.Override public com.google.protobuf.ByteString getNMinus1RunningHash() { return nMinus1RunningHash_; } /** *
     **
     * The previous running hash of all record stream items
     * 
* * bytes n_minus_1_running_hash = 2; * @param value The nMinus1RunningHash to set. * @return This builder for chaining. */ public Builder setNMinus1RunningHash(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } nMinus1RunningHash_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     **
     * The previous running hash of all record stream items
     * 
* * bytes n_minus_1_running_hash = 2; * @return This builder for chaining. */ public Builder clearNMinus1RunningHash() { bitField0_ = (bitField0_ & ~0x00000002); nMinus1RunningHash_ = getDefaultInstance().getNMinus1RunningHash(); onChanged(); return this; } private com.google.protobuf.ByteString nMinus2RunningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
     **
     * The previous, previous running hash of all record stream items
     * 
* * bytes n_minus_2_running_hash = 3; * @return The nMinus2RunningHash. */ @java.lang.Override public com.google.protobuf.ByteString getNMinus2RunningHash() { return nMinus2RunningHash_; } /** *
     **
     * The previous, previous running hash of all record stream items
     * 
* * bytes n_minus_2_running_hash = 3; * @param value The nMinus2RunningHash to set. * @return This builder for chaining. */ public Builder setNMinus2RunningHash(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } nMinus2RunningHash_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     **
     * The previous, previous running hash of all record stream items
     * 
* * bytes n_minus_2_running_hash = 3; * @return This builder for chaining. */ public Builder clearNMinus2RunningHash() { bitField0_ = (bitField0_ & ~0x00000004); nMinus2RunningHash_ = getDefaultInstance().getNMinus2RunningHash(); onChanged(); return this; } private com.google.protobuf.ByteString nMinus3RunningHash_ = com.google.protobuf.ByteString.EMPTY; /** *
     **
     * The previous, previous, previous running hash of all record stream items
     * 
* * bytes n_minus_3_running_hash = 4; * @return The nMinus3RunningHash. */ @java.lang.Override public com.google.protobuf.ByteString getNMinus3RunningHash() { return nMinus3RunningHash_; } /** *
     **
     * The previous, previous, previous running hash of all record stream items
     * 
* * bytes n_minus_3_running_hash = 4; * @param value The nMinus3RunningHash to set. * @return This builder for chaining. */ public Builder setNMinus3RunningHash(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } nMinus3RunningHash_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     **
     * The previous, previous, previous running hash of all record stream items
     * 
* * bytes n_minus_3_running_hash = 4; * @return This builder for chaining. */ public Builder clearNMinus3RunningHash() { bitField0_ = (bitField0_ & ~0x00000008); nMinus3RunningHash_ = getDefaultInstance().getNMinus3RunningHash(); 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.RunningHashes) } // @@protoc_insertion_point(class_scope:proto.RunningHashes) private static final com.hedera.hashgraph.sdk.proto.RunningHashes DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.RunningHashes(); } public static com.hedera.hashgraph.sdk.proto.RunningHashes getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public RunningHashes parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { Builder builder = newBuilder(); try { builder.mergeFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(builder.buildPartial()); } catch (com.google.protobuf.UninitializedMessageException e) { throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial()); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException(e) .setUnfinishedMessage(builder.buildPartial()); } return builder.buildPartial(); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.RunningHashes getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy