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

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

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

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

/**
 * 
 **
 * A simple protobuf wrapper to store a list of transactions. This is used by
 * `Transaction.[from|to]Bytes()` in the SDKs. The reason the SDK needs a list of transactions is
 * because it holds onto a transaction per node. So if a transaction is to be submitted to nodes 3
 * and 4 the SDK Transaction type would contain a list of 2 protobuf transactions, one for node 3
 * and one for node 4.
 * 
* * Protobuf type {@code proto.TransactionList} */ public final class TransactionList extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.TransactionList) TransactionListOrBuilder { private static final long serialVersionUID = 0L; // Use TransactionList.newBuilder() to construct. private TransactionList(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private TransactionList() { transactionList_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new TransactionList(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.TransactionListOuterClass.internal_static_proto_TransactionList_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.TransactionListOuterClass.internal_static_proto_TransactionList_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.TransactionList.class, com.hedera.hashgraph.sdk.proto.TransactionList.Builder.class); } public static final int TRANSACTION_LIST_FIELD_NUMBER = 1; @SuppressWarnings("serial") private java.util.List transactionList_; /** * repeated .proto.Transaction transaction_list = 1; */ @java.lang.Override public java.util.List getTransactionListList() { return transactionList_; } /** * repeated .proto.Transaction transaction_list = 1; */ @java.lang.Override public java.util.List getTransactionListOrBuilderList() { return transactionList_; } /** * repeated .proto.Transaction transaction_list = 1; */ @java.lang.Override public int getTransactionListCount() { return transactionList_.size(); } /** * repeated .proto.Transaction transaction_list = 1; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.Transaction getTransactionList(int index) { return transactionList_.get(index); } /** * repeated .proto.Transaction transaction_list = 1; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.TransactionOrBuilder getTransactionListOrBuilder( int index) { return transactionList_.get(index); } 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 { for (int i = 0; i < transactionList_.size(); i++) { output.writeMessage(1, transactionList_.get(i)); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; for (int i = 0; i < transactionList_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, transactionList_.get(i)); } 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.TransactionList)) { return super.equals(obj); } com.hedera.hashgraph.sdk.proto.TransactionList other = (com.hedera.hashgraph.sdk.proto.TransactionList) obj; if (!getTransactionListList() .equals(other.getTransactionListList())) 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 (getTransactionListCount() > 0) { hash = (37 * hash) + TRANSACTION_LIST_FIELD_NUMBER; hash = (53 * hash) + getTransactionListList().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.hedera.hashgraph.sdk.proto.TransactionList parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.TransactionList 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.TransactionList parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.TransactionList 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.TransactionList parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.TransactionList 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.TransactionList parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.TransactionList 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.TransactionList parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.TransactionList 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.TransactionList 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.TransactionList 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.TransactionList 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; } /** *
   **
   * A simple protobuf wrapper to store a list of transactions. This is used by
   * `Transaction.[from|to]Bytes()` in the SDKs. The reason the SDK needs a list of transactions is
   * because it holds onto a transaction per node. So if a transaction is to be submitted to nodes 3
   * and 4 the SDK Transaction type would contain a list of 2 protobuf transactions, one for node 3
   * and one for node 4.
   * 
* * Protobuf type {@code proto.TransactionList} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.TransactionList) com.hedera.hashgraph.sdk.proto.TransactionListOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.TransactionListOuterClass.internal_static_proto_TransactionList_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.TransactionListOuterClass.internal_static_proto_TransactionList_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.TransactionList.class, com.hedera.hashgraph.sdk.proto.TransactionList.Builder.class); } // Construct using com.hedera.hashgraph.sdk.proto.TransactionList.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; if (transactionListBuilder_ == null) { transactionList_ = java.util.Collections.emptyList(); } else { transactionList_ = null; transactionListBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000001); return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hedera.hashgraph.sdk.proto.TransactionListOuterClass.internal_static_proto_TransactionList_descriptor; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.TransactionList getDefaultInstanceForType() { return com.hedera.hashgraph.sdk.proto.TransactionList.getDefaultInstance(); } @java.lang.Override public com.hedera.hashgraph.sdk.proto.TransactionList build() { com.hedera.hashgraph.sdk.proto.TransactionList result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.TransactionList buildPartial() { com.hedera.hashgraph.sdk.proto.TransactionList result = new com.hedera.hashgraph.sdk.proto.TransactionList(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields(com.hedera.hashgraph.sdk.proto.TransactionList result) { if (transactionListBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0)) { transactionList_ = java.util.Collections.unmodifiableList(transactionList_); bitField0_ = (bitField0_ & ~0x00000001); } result.transactionList_ = transactionList_; } else { result.transactionList_ = transactionListBuilder_.build(); } } private void buildPartial0(com.hedera.hashgraph.sdk.proto.TransactionList result) { int from_bitField0_ = bitField0_; } @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.TransactionList) { return mergeFrom((com.hedera.hashgraph.sdk.proto.TransactionList)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.TransactionList other) { if (other == com.hedera.hashgraph.sdk.proto.TransactionList.getDefaultInstance()) return this; if (transactionListBuilder_ == null) { if (!other.transactionList_.isEmpty()) { if (transactionList_.isEmpty()) { transactionList_ = other.transactionList_; bitField0_ = (bitField0_ & ~0x00000001); } else { ensureTransactionListIsMutable(); transactionList_.addAll(other.transactionList_); } onChanged(); } } else { if (!other.transactionList_.isEmpty()) { if (transactionListBuilder_.isEmpty()) { transactionListBuilder_.dispose(); transactionListBuilder_ = null; transactionList_ = other.transactionList_; bitField0_ = (bitField0_ & ~0x00000001); transactionListBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getTransactionListFieldBuilder() : null; } else { transactionListBuilder_.addAllMessages(other.transactionList_); } } } 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: { com.hedera.hashgraph.sdk.proto.Transaction m = input.readMessage( com.hedera.hashgraph.sdk.proto.Transaction.parser(), extensionRegistry); if (transactionListBuilder_ == null) { ensureTransactionListIsMutable(); transactionList_.add(m); } else { transactionListBuilder_.addMessage(m); } break; } // case 10 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 java.util.List transactionList_ = java.util.Collections.emptyList(); private void ensureTransactionListIsMutable() { if (!((bitField0_ & 0x00000001) != 0)) { transactionList_ = new java.util.ArrayList(transactionList_); bitField0_ |= 0x00000001; } } private com.google.protobuf.RepeatedFieldBuilderV3< com.hedera.hashgraph.sdk.proto.Transaction, com.hedera.hashgraph.sdk.proto.Transaction.Builder, com.hedera.hashgraph.sdk.proto.TransactionOrBuilder> transactionListBuilder_; /** * repeated .proto.Transaction transaction_list = 1; */ public java.util.List getTransactionListList() { if (transactionListBuilder_ == null) { return java.util.Collections.unmodifiableList(transactionList_); } else { return transactionListBuilder_.getMessageList(); } } /** * repeated .proto.Transaction transaction_list = 1; */ public int getTransactionListCount() { if (transactionListBuilder_ == null) { return transactionList_.size(); } else { return transactionListBuilder_.getCount(); } } /** * repeated .proto.Transaction transaction_list = 1; */ public com.hedera.hashgraph.sdk.proto.Transaction getTransactionList(int index) { if (transactionListBuilder_ == null) { return transactionList_.get(index); } else { return transactionListBuilder_.getMessage(index); } } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder setTransactionList( int index, com.hedera.hashgraph.sdk.proto.Transaction value) { if (transactionListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureTransactionListIsMutable(); transactionList_.set(index, value); onChanged(); } else { transactionListBuilder_.setMessage(index, value); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder setTransactionList( int index, com.hedera.hashgraph.sdk.proto.Transaction.Builder builderForValue) { if (transactionListBuilder_ == null) { ensureTransactionListIsMutable(); transactionList_.set(index, builderForValue.build()); onChanged(); } else { transactionListBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder addTransactionList(com.hedera.hashgraph.sdk.proto.Transaction value) { if (transactionListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureTransactionListIsMutable(); transactionList_.add(value); onChanged(); } else { transactionListBuilder_.addMessage(value); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder addTransactionList( int index, com.hedera.hashgraph.sdk.proto.Transaction value) { if (transactionListBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureTransactionListIsMutable(); transactionList_.add(index, value); onChanged(); } else { transactionListBuilder_.addMessage(index, value); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder addTransactionList( com.hedera.hashgraph.sdk.proto.Transaction.Builder builderForValue) { if (transactionListBuilder_ == null) { ensureTransactionListIsMutable(); transactionList_.add(builderForValue.build()); onChanged(); } else { transactionListBuilder_.addMessage(builderForValue.build()); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder addTransactionList( int index, com.hedera.hashgraph.sdk.proto.Transaction.Builder builderForValue) { if (transactionListBuilder_ == null) { ensureTransactionListIsMutable(); transactionList_.add(index, builderForValue.build()); onChanged(); } else { transactionListBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder addAllTransactionList( java.lang.Iterable values) { if (transactionListBuilder_ == null) { ensureTransactionListIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, transactionList_); onChanged(); } else { transactionListBuilder_.addAllMessages(values); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder clearTransactionList() { if (transactionListBuilder_ == null) { transactionList_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); } else { transactionListBuilder_.clear(); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public Builder removeTransactionList(int index) { if (transactionListBuilder_ == null) { ensureTransactionListIsMutable(); transactionList_.remove(index); onChanged(); } else { transactionListBuilder_.remove(index); } return this; } /** * repeated .proto.Transaction transaction_list = 1; */ public com.hedera.hashgraph.sdk.proto.Transaction.Builder getTransactionListBuilder( int index) { return getTransactionListFieldBuilder().getBuilder(index); } /** * repeated .proto.Transaction transaction_list = 1; */ public com.hedera.hashgraph.sdk.proto.TransactionOrBuilder getTransactionListOrBuilder( int index) { if (transactionListBuilder_ == null) { return transactionList_.get(index); } else { return transactionListBuilder_.getMessageOrBuilder(index); } } /** * repeated .proto.Transaction transaction_list = 1; */ public java.util.List getTransactionListOrBuilderList() { if (transactionListBuilder_ != null) { return transactionListBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(transactionList_); } } /** * repeated .proto.Transaction transaction_list = 1; */ public com.hedera.hashgraph.sdk.proto.Transaction.Builder addTransactionListBuilder() { return getTransactionListFieldBuilder().addBuilder( com.hedera.hashgraph.sdk.proto.Transaction.getDefaultInstance()); } /** * repeated .proto.Transaction transaction_list = 1; */ public com.hedera.hashgraph.sdk.proto.Transaction.Builder addTransactionListBuilder( int index) { return getTransactionListFieldBuilder().addBuilder( index, com.hedera.hashgraph.sdk.proto.Transaction.getDefaultInstance()); } /** * repeated .proto.Transaction transaction_list = 1; */ public java.util.List getTransactionListBuilderList() { return getTransactionListFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< com.hedera.hashgraph.sdk.proto.Transaction, com.hedera.hashgraph.sdk.proto.Transaction.Builder, com.hedera.hashgraph.sdk.proto.TransactionOrBuilder> getTransactionListFieldBuilder() { if (transactionListBuilder_ == null) { transactionListBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< com.hedera.hashgraph.sdk.proto.Transaction, com.hedera.hashgraph.sdk.proto.Transaction.Builder, com.hedera.hashgraph.sdk.proto.TransactionOrBuilder>( transactionList_, ((bitField0_ & 0x00000001) != 0), getParentForChildren(), isClean()); transactionList_ = null; } return transactionListBuilder_; } @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.TransactionList) } // @@protoc_insertion_point(class_scope:proto.TransactionList) private static final com.hedera.hashgraph.sdk.proto.TransactionList DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.TransactionList(); } public static com.hedera.hashgraph.sdk.proto.TransactionList getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public TransactionList 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.TransactionList getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy