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

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

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

package com.hederahashgraph.api.proto.java;

/**
 * 
 **
 * An account, and the amount that it sends or receives during a cryptocurrency or token transfer.
 * 
* * Protobuf type {@code proto.AccountAmount} */ public final class AccountAmount extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.AccountAmount) AccountAmountOrBuilder { private static final long serialVersionUID = 0L; // Use AccountAmount.newBuilder() to construct. private AccountAmount(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private AccountAmount() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new AccountAmount(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private AccountAmount( 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.AccountID.Builder subBuilder = null; if (accountID_ != null) { subBuilder = accountID_.toBuilder(); } accountID_ = input.readMessage(com.hederahashgraph.api.proto.java.AccountID.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(accountID_); accountID_ = subBuilder.buildPartial(); } break; } case 16: { amount_ = input.readSInt64(); break; } case 24: { isApproval_ = input.readBool(); 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.BasicTypes.internal_static_proto_AccountAmount_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_AccountAmount_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.AccountAmount.class, com.hederahashgraph.api.proto.java.AccountAmount.Builder.class); } public static final int ACCOUNTID_FIELD_NUMBER = 1; private com.hederahashgraph.api.proto.java.AccountID accountID_; /** *
   **
   * The Account ID that sends/receives cryptocurrency or tokens
   * 
* * .proto.AccountID accountID = 1; * @return Whether the accountID field is set. */ @java.lang.Override public boolean hasAccountID() { return accountID_ != null; } /** *
   **
   * The Account ID that sends/receives cryptocurrency or tokens
   * 
* * .proto.AccountID accountID = 1; * @return The accountID. */ @java.lang.Override public com.hederahashgraph.api.proto.java.AccountID getAccountID() { return accountID_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : accountID_; } /** *
   **
   * The Account ID that sends/receives cryptocurrency or tokens
   * 
* * .proto.AccountID accountID = 1; */ @java.lang.Override public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountIDOrBuilder() { return getAccountID(); } public static final int AMOUNT_FIELD_NUMBER = 2; private long amount_; /** *
   **
   * The amount of tinybars (for Crypto transfers) or in the lowest
   * denomination (for Token transfers) that the account sends(negative) or
   * receives(positive)
   * 
* * sint64 amount = 2; * @return The amount. */ @java.lang.Override public long getAmount() { return amount_; } public static final int IS_APPROVAL_FIELD_NUMBER = 3; private boolean isApproval_; /** *
   **
   * If true then the transfer is expected to be an approved allowance and the
   * accountID is expected to be the owner. The default is false (omitted).
   * 
* * bool is_approval = 3; * @return The isApproval. */ @java.lang.Override public boolean getIsApproval() { return isApproval_; } 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 (accountID_ != null) { output.writeMessage(1, getAccountID()); } if (amount_ != 0L) { output.writeSInt64(2, amount_); } if (isApproval_ != false) { output.writeBool(3, isApproval_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (accountID_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getAccountID()); } if (amount_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeSInt64Size(2, amount_); } if (isApproval_ != false) { size += com.google.protobuf.CodedOutputStream .computeBoolSize(3, isApproval_); } 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.AccountAmount)) { return super.equals(obj); } com.hederahashgraph.api.proto.java.AccountAmount other = (com.hederahashgraph.api.proto.java.AccountAmount) obj; if (hasAccountID() != other.hasAccountID()) return false; if (hasAccountID()) { if (!getAccountID() .equals(other.getAccountID())) return false; } if (getAmount() != other.getAmount()) return false; if (getIsApproval() != other.getIsApproval()) 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 (hasAccountID()) { hash = (37 * hash) + ACCOUNTID_FIELD_NUMBER; hash = (53 * hash) + getAccountID().hashCode(); } hash = (37 * hash) + AMOUNT_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getAmount()); hash = (37 * hash) + IS_APPROVAL_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean( getIsApproval()); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.hederahashgraph.api.proto.java.AccountAmount parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.AccountAmount 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.AccountAmount parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.AccountAmount 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.AccountAmount parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.AccountAmount 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.AccountAmount parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.AccountAmount 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.AccountAmount parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.AccountAmount 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.AccountAmount 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.AccountAmount 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.AccountAmount 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; } /** *
   **
   * An account, and the amount that it sends or receives during a cryptocurrency or token transfer.
   * 
* * Protobuf type {@code proto.AccountAmount} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.AccountAmount) com.hederahashgraph.api.proto.java.AccountAmountOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_AccountAmount_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_AccountAmount_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.AccountAmount.class, com.hederahashgraph.api.proto.java.AccountAmount.Builder.class); } // Construct using com.hederahashgraph.api.proto.java.AccountAmount.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 (accountIDBuilder_ == null) { accountID_ = null; } else { accountID_ = null; accountIDBuilder_ = null; } amount_ = 0L; isApproval_ = false; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_AccountAmount_descriptor; } @java.lang.Override public com.hederahashgraph.api.proto.java.AccountAmount getDefaultInstanceForType() { return com.hederahashgraph.api.proto.java.AccountAmount.getDefaultInstance(); } @java.lang.Override public com.hederahashgraph.api.proto.java.AccountAmount build() { com.hederahashgraph.api.proto.java.AccountAmount result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hederahashgraph.api.proto.java.AccountAmount buildPartial() { com.hederahashgraph.api.proto.java.AccountAmount result = new com.hederahashgraph.api.proto.java.AccountAmount(this); if (accountIDBuilder_ == null) { result.accountID_ = accountID_; } else { result.accountID_ = accountIDBuilder_.build(); } result.amount_ = amount_; result.isApproval_ = isApproval_; 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.AccountAmount) { return mergeFrom((com.hederahashgraph.api.proto.java.AccountAmount)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hederahashgraph.api.proto.java.AccountAmount other) { if (other == com.hederahashgraph.api.proto.java.AccountAmount.getDefaultInstance()) return this; if (other.hasAccountID()) { mergeAccountID(other.getAccountID()); } if (other.getAmount() != 0L) { setAmount(other.getAmount()); } if (other.getIsApproval() != false) { setIsApproval(other.getIsApproval()); } 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.AccountAmount parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.hederahashgraph.api.proto.java.AccountAmount) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private com.hederahashgraph.api.proto.java.AccountID accountID_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder> accountIDBuilder_; /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; * @return Whether the accountID field is set. */ public boolean hasAccountID() { return accountIDBuilder_ != null || accountID_ != null; } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; * @return The accountID. */ public com.hederahashgraph.api.proto.java.AccountID getAccountID() { if (accountIDBuilder_ == null) { return accountID_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : accountID_; } else { return accountIDBuilder_.getMessage(); } } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ public Builder setAccountID(com.hederahashgraph.api.proto.java.AccountID value) { if (accountIDBuilder_ == null) { if (value == null) { throw new NullPointerException(); } accountID_ = value; onChanged(); } else { accountIDBuilder_.setMessage(value); } return this; } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ public Builder setAccountID( com.hederahashgraph.api.proto.java.AccountID.Builder builderForValue) { if (accountIDBuilder_ == null) { accountID_ = builderForValue.build(); onChanged(); } else { accountIDBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ public Builder mergeAccountID(com.hederahashgraph.api.proto.java.AccountID value) { if (accountIDBuilder_ == null) { if (accountID_ != null) { accountID_ = com.hederahashgraph.api.proto.java.AccountID.newBuilder(accountID_).mergeFrom(value).buildPartial(); } else { accountID_ = value; } onChanged(); } else { accountIDBuilder_.mergeFrom(value); } return this; } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ public Builder clearAccountID() { if (accountIDBuilder_ == null) { accountID_ = null; onChanged(); } else { accountID_ = null; accountIDBuilder_ = null; } return this; } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ public com.hederahashgraph.api.proto.java.AccountID.Builder getAccountIDBuilder() { onChanged(); return getAccountIDFieldBuilder().getBuilder(); } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountIDOrBuilder() { if (accountIDBuilder_ != null) { return accountIDBuilder_.getMessageOrBuilder(); } else { return accountID_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : accountID_; } } /** *
     **
     * The Account ID that sends/receives cryptocurrency or tokens
     * 
* * .proto.AccountID accountID = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder> getAccountIDFieldBuilder() { if (accountIDBuilder_ == null) { accountIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>( getAccountID(), getParentForChildren(), isClean()); accountID_ = null; } return accountIDBuilder_; } private long amount_ ; /** *
     **
     * The amount of tinybars (for Crypto transfers) or in the lowest
     * denomination (for Token transfers) that the account sends(negative) or
     * receives(positive)
     * 
* * sint64 amount = 2; * @return The amount. */ @java.lang.Override public long getAmount() { return amount_; } /** *
     **
     * The amount of tinybars (for Crypto transfers) or in the lowest
     * denomination (for Token transfers) that the account sends(negative) or
     * receives(positive)
     * 
* * sint64 amount = 2; * @param value The amount to set. * @return This builder for chaining. */ public Builder setAmount(long value) { amount_ = value; onChanged(); return this; } /** *
     **
     * The amount of tinybars (for Crypto transfers) or in the lowest
     * denomination (for Token transfers) that the account sends(negative) or
     * receives(positive)
     * 
* * sint64 amount = 2; * @return This builder for chaining. */ public Builder clearAmount() { amount_ = 0L; onChanged(); return this; } private boolean isApproval_ ; /** *
     **
     * If true then the transfer is expected to be an approved allowance and the
     * accountID is expected to be the owner. The default is false (omitted).
     * 
* * bool is_approval = 3; * @return The isApproval. */ @java.lang.Override public boolean getIsApproval() { return isApproval_; } /** *
     **
     * If true then the transfer is expected to be an approved allowance and the
     * accountID is expected to be the owner. The default is false (omitted).
     * 
* * bool is_approval = 3; * @param value The isApproval to set. * @return This builder for chaining. */ public Builder setIsApproval(boolean value) { isApproval_ = value; onChanged(); return this; } /** *
     **
     * If true then the transfer is expected to be an approved allowance and the
     * accountID is expected to be the owner. The default is false (omitted).
     * 
* * bool is_approval = 3; * @return This builder for chaining. */ public Builder clearIsApproval() { isApproval_ = false; 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.AccountAmount) } // @@protoc_insertion_point(class_scope:proto.AccountAmount) private static final com.hederahashgraph.api.proto.java.AccountAmount DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.AccountAmount(); } public static com.hederahashgraph.api.proto.java.AccountAmount getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public AccountAmount parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new AccountAmount(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.AccountAmount getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy