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

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

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

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

/**
 * 
 **
 * Call a function of the given smart contract instance, giving it functionParameters as its inputs.
 * The call can use at maximum the given amount of gas - the paying account will not be charged for
 * any unspent gas.
 *
 * If this function results in data being stored, an amount of gas is calculated that reflects this
 * storage burden.
 *
 * The amount of gas used, as well as other attributes of the transaction, e.g. size, number of
 * signatures to be verified, determine the fee for the transaction - which is charged to the paying
 * account.
 * 
* * Protobuf type {@code proto.ContractCallTransactionBody} */ public final class ContractCallTransactionBody extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.ContractCallTransactionBody) ContractCallTransactionBodyOrBuilder { private static final long serialVersionUID = 0L; // Use ContractCallTransactionBody.newBuilder() to construct. private ContractCallTransactionBody(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ContractCallTransactionBody() { functionParameters_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new ContractCallTransactionBody(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.ContractCall.internal_static_proto_ContractCallTransactionBody_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.ContractCall.internal_static_proto_ContractCallTransactionBody_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.class, com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.Builder.class); } private int bitField0_; public static final int CONTRACTID_FIELD_NUMBER = 1; private com.hedera.hashgraph.sdk.proto.ContractID contractID_; /** *
   **
   * The contract to call
   * 
* * .proto.ContractID contractID = 1; * @return Whether the contractID field is set. */ @java.lang.Override public boolean hasContractID() { return ((bitField0_ & 0x00000001) != 0); } /** *
   **
   * The contract to call
   * 
* * .proto.ContractID contractID = 1; * @return The contractID. */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.ContractID getContractID() { return contractID_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractID_; } /** *
   **
   * The contract to call
   * 
* * .proto.ContractID contractID = 1; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder() { return contractID_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractID_; } public static final int GAS_FIELD_NUMBER = 2; private long gas_ = 0L; /** *
   **
   * the maximum amount of gas to use for the call
   * 
* * int64 gas = 2; * @return The gas. */ @java.lang.Override public long getGas() { return gas_; } public static final int AMOUNT_FIELD_NUMBER = 3; private long amount_ = 0L; /** *
   **
   * number of tinybars sent (the function must be payable if this is nonzero)
   * 
* * int64 amount = 3; * @return The amount. */ @java.lang.Override public long getAmount() { return amount_; } public static final int FUNCTIONPARAMETERS_FIELD_NUMBER = 4; private com.google.protobuf.ByteString functionParameters_ = com.google.protobuf.ByteString.EMPTY; /** *
   **
   * which function to call, and the parameters to pass to the function
   * 
* * bytes functionParameters = 4; * @return The functionParameters. */ @java.lang.Override public com.google.protobuf.ByteString getFunctionParameters() { return functionParameters_; } 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 (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(1, getContractID()); } if (gas_ != 0L) { output.writeInt64(2, gas_); } if (amount_ != 0L) { output.writeInt64(3, amount_); } if (!functionParameters_.isEmpty()) { output.writeBytes(4, functionParameters_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getContractID()); } if (gas_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(2, gas_); } if (amount_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, amount_); } if (!functionParameters_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(4, functionParameters_); } 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.ContractCallTransactionBody)) { return super.equals(obj); } com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody other = (com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody) obj; if (hasContractID() != other.hasContractID()) return false; if (hasContractID()) { if (!getContractID() .equals(other.getContractID())) return false; } if (getGas() != other.getGas()) return false; if (getAmount() != other.getAmount()) return false; if (!getFunctionParameters() .equals(other.getFunctionParameters())) 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 (hasContractID()) { hash = (37 * hash) + CONTRACTID_FIELD_NUMBER; hash = (53 * hash) + getContractID().hashCode(); } hash = (37 * hash) + GAS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getGas()); hash = (37 * hash) + AMOUNT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getAmount()); hash = (37 * hash) + FUNCTIONPARAMETERS_FIELD_NUMBER; hash = (53 * hash) + getFunctionParameters().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody 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.ContractCallTransactionBody parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody 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.ContractCallTransactionBody parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody 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.ContractCallTransactionBody parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody 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.ContractCallTransactionBody parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody 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.ContractCallTransactionBody 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.ContractCallTransactionBody 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.ContractCallTransactionBody 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; } /** *
   **
   * Call a function of the given smart contract instance, giving it functionParameters as its inputs.
   * The call can use at maximum the given amount of gas - the paying account will not be charged for
   * any unspent gas.
   *
   * If this function results in data being stored, an amount of gas is calculated that reflects this
   * storage burden.
   *
   * The amount of gas used, as well as other attributes of the transaction, e.g. size, number of
   * signatures to be verified, determine the fee for the transaction - which is charged to the paying
   * account.
   * 
* * Protobuf type {@code proto.ContractCallTransactionBody} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.ContractCallTransactionBody) com.hedera.hashgraph.sdk.proto.ContractCallTransactionBodyOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.ContractCall.internal_static_proto_ContractCallTransactionBody_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.ContractCall.internal_static_proto_ContractCallTransactionBody_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.class, com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.Builder.class); } // Construct using com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getContractIDFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; contractID_ = null; if (contractIDBuilder_ != null) { contractIDBuilder_.dispose(); contractIDBuilder_ = null; } gas_ = 0L; amount_ = 0L; functionParameters_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hedera.hashgraph.sdk.proto.ContractCall.internal_static_proto_ContractCallTransactionBody_descriptor; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody getDefaultInstanceForType() { return com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.getDefaultInstance(); } @java.lang.Override public com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody build() { com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody buildPartial() { com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody result = new com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.contractID_ = contractIDBuilder_ == null ? contractID_ : contractIDBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.gas_ = gas_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.amount_ = amount_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.functionParameters_ = functionParameters_; } result.bitField0_ |= to_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.ContractCallTransactionBody) { return mergeFrom((com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody other) { if (other == com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody.getDefaultInstance()) return this; if (other.hasContractID()) { mergeContractID(other.getContractID()); } if (other.getGas() != 0L) { setGas(other.getGas()); } if (other.getAmount() != 0L) { setAmount(other.getAmount()); } if (other.getFunctionParameters() != com.google.protobuf.ByteString.EMPTY) { setFunctionParameters(other.getFunctionParameters()); } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; } @java.lang.Override public final boolean isInitialized() { return true; } @java.lang.Override public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { if (extensionRegistry == null) { throw new java.lang.NullPointerException(); } try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; case 10: { input.readMessage( getContractIDFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 16: { gas_ = input.readInt64(); bitField0_ |= 0x00000002; break; } // case 16 case 24: { amount_ = input.readInt64(); bitField0_ |= 0x00000004; break; } // case 24 case 34: { functionParameters_ = 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.hedera.hashgraph.sdk.proto.ContractID contractID_; private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.ContractID, com.hedera.hashgraph.sdk.proto.ContractID.Builder, com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder> contractIDBuilder_; /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; * @return Whether the contractID field is set. */ public boolean hasContractID() { return ((bitField0_ & 0x00000001) != 0); } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; * @return The contractID. */ public com.hedera.hashgraph.sdk.proto.ContractID getContractID() { if (contractIDBuilder_ == null) { return contractID_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractID_; } else { return contractIDBuilder_.getMessage(); } } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ public Builder setContractID(com.hedera.hashgraph.sdk.proto.ContractID value) { if (contractIDBuilder_ == null) { if (value == null) { throw new NullPointerException(); } contractID_ = value; } else { contractIDBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ public Builder setContractID( com.hedera.hashgraph.sdk.proto.ContractID.Builder builderForValue) { if (contractIDBuilder_ == null) { contractID_ = builderForValue.build(); } else { contractIDBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ public Builder mergeContractID(com.hedera.hashgraph.sdk.proto.ContractID value) { if (contractIDBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && contractID_ != null && contractID_ != com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance()) { getContractIDBuilder().mergeFrom(value); } else { contractID_ = value; } } else { contractIDBuilder_.mergeFrom(value); } if (contractID_ != null) { bitField0_ |= 0x00000001; onChanged(); } return this; } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ public Builder clearContractID() { bitField0_ = (bitField0_ & ~0x00000001); contractID_ = null; if (contractIDBuilder_ != null) { contractIDBuilder_.dispose(); contractIDBuilder_ = null; } onChanged(); return this; } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ public com.hedera.hashgraph.sdk.proto.ContractID.Builder getContractIDBuilder() { bitField0_ |= 0x00000001; onChanged(); return getContractIDFieldBuilder().getBuilder(); } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ public com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder getContractIDOrBuilder() { if (contractIDBuilder_ != null) { return contractIDBuilder_.getMessageOrBuilder(); } else { return contractID_ == null ? com.hedera.hashgraph.sdk.proto.ContractID.getDefaultInstance() : contractID_; } } /** *
     **
     * The contract to call
     * 
* * .proto.ContractID contractID = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.ContractID, com.hedera.hashgraph.sdk.proto.ContractID.Builder, com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder> getContractIDFieldBuilder() { if (contractIDBuilder_ == null) { contractIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.ContractID, com.hedera.hashgraph.sdk.proto.ContractID.Builder, com.hedera.hashgraph.sdk.proto.ContractIDOrBuilder>( getContractID(), getParentForChildren(), isClean()); contractID_ = null; } return contractIDBuilder_; } private long gas_ ; /** *
     **
     * the maximum amount of gas to use for the call
     * 
* * int64 gas = 2; * @return The gas. */ @java.lang.Override public long getGas() { return gas_; } /** *
     **
     * the maximum amount of gas to use for the call
     * 
* * int64 gas = 2; * @param value The gas to set. * @return This builder for chaining. */ public Builder setGas(long value) { gas_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     **
     * the maximum amount of gas to use for the call
     * 
* * int64 gas = 2; * @return This builder for chaining. */ public Builder clearGas() { bitField0_ = (bitField0_ & ~0x00000002); gas_ = 0L; onChanged(); return this; } private long amount_ ; /** *
     **
     * number of tinybars sent (the function must be payable if this is nonzero)
     * 
* * int64 amount = 3; * @return The amount. */ @java.lang.Override public long getAmount() { return amount_; } /** *
     **
     * number of tinybars sent (the function must be payable if this is nonzero)
     * 
* * int64 amount = 3; * @param value The amount to set. * @return This builder for chaining. */ public Builder setAmount(long value) { amount_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     **
     * number of tinybars sent (the function must be payable if this is nonzero)
     * 
* * int64 amount = 3; * @return This builder for chaining. */ public Builder clearAmount() { bitField0_ = (bitField0_ & ~0x00000004); amount_ = 0L; onChanged(); return this; } private com.google.protobuf.ByteString functionParameters_ = com.google.protobuf.ByteString.EMPTY; /** *
     **
     * which function to call, and the parameters to pass to the function
     * 
* * bytes functionParameters = 4; * @return The functionParameters. */ @java.lang.Override public com.google.protobuf.ByteString getFunctionParameters() { return functionParameters_; } /** *
     **
     * which function to call, and the parameters to pass to the function
     * 
* * bytes functionParameters = 4; * @param value The functionParameters to set. * @return This builder for chaining. */ public Builder setFunctionParameters(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } functionParameters_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     **
     * which function to call, and the parameters to pass to the function
     * 
* * bytes functionParameters = 4; * @return This builder for chaining. */ public Builder clearFunctionParameters() { bitField0_ = (bitField0_ & ~0x00000008); functionParameters_ = getDefaultInstance().getFunctionParameters(); 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.ContractCallTransactionBody) } // @@protoc_insertion_point(class_scope:proto.ContractCallTransactionBody) private static final com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody(); } public static com.hedera.hashgraph.sdk.proto.ContractCallTransactionBody getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ContractCallTransactionBody 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.ContractCallTransactionBody getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy