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

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

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

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

/**
 * 
 **
 * Response when the client sends the node CryptoGetAccountBalanceQuery
 * 
* * Protobuf type {@code proto.CryptoGetAccountBalanceResponse} */ public final class CryptoGetAccountBalanceResponse extends com.google.protobuf.GeneratedMessageLite< CryptoGetAccountBalanceResponse, CryptoGetAccountBalanceResponse.Builder> implements // @@protoc_insertion_point(message_implements:proto.CryptoGetAccountBalanceResponse) CryptoGetAccountBalanceResponseOrBuilder { private CryptoGetAccountBalanceResponse() { tokenBalances_ = emptyProtobufList(); } private int bitField0_; public static final int HEADER_FIELD_NUMBER = 1; private com.hedera.hashgraph.sdk.proto.ResponseHeader header_; /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither.
   * 
* * .proto.ResponseHeader header = 1; */ @java.lang.Override public boolean hasHeader() { return ((bitField0_ & 0x00000001) != 0); } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither.
   * 
* * .proto.ResponseHeader header = 1; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.ResponseHeader getHeader() { return header_ == null ? com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance() : header_; } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither.
   * 
* * .proto.ResponseHeader header = 1; */ private void setHeader(com.hedera.hashgraph.sdk.proto.ResponseHeader value) { value.getClass(); header_ = value; bitField0_ |= 0x00000001; } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither.
   * 
* * .proto.ResponseHeader header = 1; */ @java.lang.SuppressWarnings({"ReferenceEquality"}) private void mergeHeader(com.hedera.hashgraph.sdk.proto.ResponseHeader value) { value.getClass(); if (header_ != null && header_ != com.hedera.hashgraph.sdk.proto.ResponseHeader.getDefaultInstance()) { header_ = com.hedera.hashgraph.sdk.proto.ResponseHeader.newBuilder(header_).mergeFrom(value).buildPartial(); } else { header_ = value; } bitField0_ |= 0x00000001; } /** *
   **
   * Standard response from node to client, including the requested fields: cost, or state proof,
   * or both, or neither.
   * 
* * .proto.ResponseHeader header = 1; */ private void clearHeader() { header_ = null; bitField0_ = (bitField0_ & ~0x00000001); } public static final int ACCOUNTID_FIELD_NUMBER = 2; private com.hedera.hashgraph.sdk.proto.AccountID accountID_; /** *
   **
   * The account ID that is being described (this is useful with state proofs, for proving to a
   * third party)
   * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public boolean hasAccountID() { return ((bitField0_ & 0x00000002) != 0); } /** *
   **
   * The account ID that is being described (this is useful with state proofs, for proving to a
   * third party)
   * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() { return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_; } /** *
   **
   * The account ID that is being described (this is useful with state proofs, for proving to a
   * third party)
   * 
* * .proto.AccountID accountID = 2; */ private void setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) { value.getClass(); accountID_ = value; bitField0_ |= 0x00000002; } /** *
   **
   * The account ID that is being described (this is useful with state proofs, for proving to a
   * third party)
   * 
* * .proto.AccountID accountID = 2; */ @java.lang.SuppressWarnings({"ReferenceEquality"}) private void mergeAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) { value.getClass(); if (accountID_ != null && accountID_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) { accountID_ = com.hedera.hashgraph.sdk.proto.AccountID.newBuilder(accountID_).mergeFrom(value).buildPartial(); } else { accountID_ = value; } bitField0_ |= 0x00000002; } /** *
   **
   * The account ID that is being described (this is useful with state proofs, for proving to a
   * third party)
   * 
* * .proto.AccountID accountID = 2; */ private void clearAccountID() { accountID_ = null; bitField0_ = (bitField0_ & ~0x00000002); } public static final int BALANCE_FIELD_NUMBER = 3; private long balance_; /** *
   **
   * The current balance, in tinybars.
   * 
* * uint64 balance = 3; * @return The balance. */ @java.lang.Override public long getBalance() { return balance_; } /** *
   **
   * The current balance, in tinybars.
   * 
* * uint64 balance = 3; * @param value The balance to set. */ private void setBalance(long value) { balance_ = value; } /** *
   **
   * The current balance, in tinybars.
   * 
* * uint64 balance = 3; */ private void clearBalance() { balance_ = 0L; } public static final int TOKENBALANCES_FIELD_NUMBER = 4; private com.google.protobuf.Internal.ProtobufList tokenBalances_; /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Override @java.lang.Deprecated public java.util.List getTokenBalancesList() { return tokenBalances_; } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public java.util.List getTokenBalancesOrBuilderList() { return tokenBalances_; } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Override @java.lang.Deprecated public int getTokenBalancesCount() { return tokenBalances_.size(); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Override @java.lang.Deprecated public com.hedera.hashgraph.sdk.proto.TokenBalance getTokenBalances(int index) { return tokenBalances_.get(index); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public com.hedera.hashgraph.sdk.proto.TokenBalanceOrBuilder getTokenBalancesOrBuilder( int index) { return tokenBalances_.get(index); } private void ensureTokenBalancesIsMutable() { com.google.protobuf.Internal.ProtobufList tmp = tokenBalances_; if (!tmp.isModifiable()) { tokenBalances_ = com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp); } } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ private void setTokenBalances( int index, com.hedera.hashgraph.sdk.proto.TokenBalance value) { value.getClass(); ensureTokenBalancesIsMutable(); tokenBalances_.set(index, value); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ private void addTokenBalances(com.hedera.hashgraph.sdk.proto.TokenBalance value) { value.getClass(); ensureTokenBalancesIsMutable(); tokenBalances_.add(value); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ private void addTokenBalances( int index, com.hedera.hashgraph.sdk.proto.TokenBalance value) { value.getClass(); ensureTokenBalancesIsMutable(); tokenBalances_.add(index, value); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ private void addAllTokenBalances( java.lang.Iterable values) { ensureTokenBalancesIsMutable(); com.google.protobuf.AbstractMessageLite.addAll( values, tokenBalances_); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ private void clearTokenBalances() { tokenBalances_ = emptyProtobufList(); } /** *
   **
   * [DEPRECATED] The balances of the tokens associated to the account. This field was 
   * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
   * an account to be associated to an unlimited number of tokens. This scale makes it more 
   * efficient for users to consult mirror nodes to review their token balances.
   * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ private void removeTokenBalances(int index) { ensureTokenBalancesIsMutable(); tokenBalances_.remove(index); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, data, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return parseDelimitedFrom(DEFAULT_INSTANCE, input); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageLite.parseFrom( DEFAULT_INSTANCE, input, extensionRegistry); } public static Builder newBuilder() { return (Builder) DEFAULT_INSTANCE.createBuilder(); } public static Builder newBuilder(com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse prototype) { return DEFAULT_INSTANCE.createBuilder(prototype); } /** *
   **
   * Response when the client sends the node CryptoGetAccountBalanceQuery
   * 
* * Protobuf type {@code proto.CryptoGetAccountBalanceResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageLite.Builder< com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse, Builder> implements // @@protoc_insertion_point(builder_implements:proto.CryptoGetAccountBalanceResponse) com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponseOrBuilder { // Construct using com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse.newBuilder() private Builder() { super(DEFAULT_INSTANCE); } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither.
     * 
* * .proto.ResponseHeader header = 1; */ @java.lang.Override public boolean hasHeader() { return instance.hasHeader(); } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither.
     * 
* * .proto.ResponseHeader header = 1; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.ResponseHeader getHeader() { return instance.getHeader(); } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither.
     * 
* * .proto.ResponseHeader header = 1; */ public Builder setHeader(com.hedera.hashgraph.sdk.proto.ResponseHeader value) { copyOnWrite(); instance.setHeader(value); return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither.
     * 
* * .proto.ResponseHeader header = 1; */ public Builder setHeader( com.hedera.hashgraph.sdk.proto.ResponseHeader.Builder builderForValue) { copyOnWrite(); instance.setHeader(builderForValue.build()); return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither.
     * 
* * .proto.ResponseHeader header = 1; */ public Builder mergeHeader(com.hedera.hashgraph.sdk.proto.ResponseHeader value) { copyOnWrite(); instance.mergeHeader(value); return this; } /** *
     **
     * Standard response from node to client, including the requested fields: cost, or state proof,
     * or both, or neither.
     * 
* * .proto.ResponseHeader header = 1; */ public Builder clearHeader() { copyOnWrite(); instance.clearHeader(); return this; } /** *
     **
     * The account ID that is being described (this is useful with state proofs, for proving to a
     * third party)
     * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public boolean hasAccountID() { return instance.hasAccountID(); } /** *
     **
     * The account ID that is being described (this is useful with state proofs, for proving to a
     * third party)
     * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() { return instance.getAccountID(); } /** *
     **
     * The account ID that is being described (this is useful with state proofs, for proving to a
     * third party)
     * 
* * .proto.AccountID accountID = 2; */ public Builder setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) { copyOnWrite(); instance.setAccountID(value); return this; } /** *
     **
     * The account ID that is being described (this is useful with state proofs, for proving to a
     * third party)
     * 
* * .proto.AccountID accountID = 2; */ public Builder setAccountID( com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) { copyOnWrite(); instance.setAccountID(builderForValue.build()); return this; } /** *
     **
     * The account ID that is being described (this is useful with state proofs, for proving to a
     * third party)
     * 
* * .proto.AccountID accountID = 2; */ public Builder mergeAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) { copyOnWrite(); instance.mergeAccountID(value); return this; } /** *
     **
     * The account ID that is being described (this is useful with state proofs, for proving to a
     * third party)
     * 
* * .proto.AccountID accountID = 2; */ public Builder clearAccountID() { copyOnWrite(); instance.clearAccountID(); return this; } /** *
     **
     * The current balance, in tinybars.
     * 
* * uint64 balance = 3; * @return The balance. */ @java.lang.Override public long getBalance() { return instance.getBalance(); } /** *
     **
     * The current balance, in tinybars.
     * 
* * uint64 balance = 3; * @param value The balance to set. * @return This builder for chaining. */ public Builder setBalance(long value) { copyOnWrite(); instance.setBalance(value); return this; } /** *
     **
     * The current balance, in tinybars.
     * 
* * uint64 balance = 3; * @return This builder for chaining. */ public Builder clearBalance() { copyOnWrite(); instance.clearBalance(); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Override @java.lang.Deprecated public java.util.List getTokenBalancesList() { return java.util.Collections.unmodifiableList( instance.getTokenBalancesList()); } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Override @java.lang.Deprecated public int getTokenBalancesCount() { return instance.getTokenBalancesCount(); }/** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Override @java.lang.Deprecated public com.hedera.hashgraph.sdk.proto.TokenBalance getTokenBalances(int index) { return instance.getTokenBalances(index); } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder setTokenBalances( int index, com.hedera.hashgraph.sdk.proto.TokenBalance value) { copyOnWrite(); instance.setTokenBalances(index, value); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder setTokenBalances( int index, com.hedera.hashgraph.sdk.proto.TokenBalance.Builder builderForValue) { copyOnWrite(); instance.setTokenBalances(index, builderForValue.build()); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder addTokenBalances(com.hedera.hashgraph.sdk.proto.TokenBalance value) { copyOnWrite(); instance.addTokenBalances(value); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder addTokenBalances( int index, com.hedera.hashgraph.sdk.proto.TokenBalance value) { copyOnWrite(); instance.addTokenBalances(index, value); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder addTokenBalances( com.hedera.hashgraph.sdk.proto.TokenBalance.Builder builderForValue) { copyOnWrite(); instance.addTokenBalances(builderForValue.build()); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder addTokenBalances( int index, com.hedera.hashgraph.sdk.proto.TokenBalance.Builder builderForValue) { copyOnWrite(); instance.addTokenBalances(index, builderForValue.build()); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder addAllTokenBalances( java.lang.Iterable values) { copyOnWrite(); instance.addAllTokenBalances(values); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder clearTokenBalances() { copyOnWrite(); instance.clearTokenBalances(); return this; } /** *
     **
     * [DEPRECATED] The balances of the tokens associated to the account. This field was 
     * deprecated by <a href="https://hips.hedera.com/hip/hip-367">HIP-367</a>, which allowed 
     * an account to be associated to an unlimited number of tokens. This scale makes it more 
     * efficient for users to consult mirror nodes to review their token balances.
     * 
* * repeated .proto.TokenBalance tokenBalances = 4 [deprecated = true]; */ @java.lang.Deprecated public Builder removeTokenBalances(int index) { copyOnWrite(); instance.removeTokenBalances(index); return this; } // @@protoc_insertion_point(builder_scope:proto.CryptoGetAccountBalanceResponse) } @java.lang.Override @java.lang.SuppressWarnings({"unchecked", "fallthrough"}) protected final java.lang.Object dynamicMethod( com.google.protobuf.GeneratedMessageLite.MethodToInvoke method, java.lang.Object arg0, java.lang.Object arg1) { switch (method) { case NEW_MUTABLE_INSTANCE: { return new com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse(); } case NEW_BUILDER: { return new Builder(); } case BUILD_MESSAGE_INFO: { java.lang.Object[] objects = new java.lang.Object[] { "bitField0_", "header_", "accountID_", "balance_", "tokenBalances_", com.hedera.hashgraph.sdk.proto.TokenBalance.class, }; java.lang.String info = "\u0000\u0004\u0000\u0001\u0001\u0004\u0004\u0000\u0001\u0000\u0001\u1009\u0000\u0002" + "\u1009\u0001\u0003\u0003\u0004\u001b"; return newMessageInfo(DEFAULT_INSTANCE, info, objects); } // fall through case GET_DEFAULT_INSTANCE: { return DEFAULT_INSTANCE; } case GET_PARSER: { com.google.protobuf.Parser parser = PARSER; if (parser == null) { synchronized (com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse.class) { parser = PARSER; if (parser == null) { parser = new DefaultInstanceBasedParser( DEFAULT_INSTANCE); PARSER = parser; } } } return parser; } case GET_MEMOIZED_IS_INITIALIZED: { return (byte) 1; } case SET_MEMOIZED_IS_INITIALIZED: { return null; } } throw new UnsupportedOperationException(); } // @@protoc_insertion_point(class_scope:proto.CryptoGetAccountBalanceResponse) private static final com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse DEFAULT_INSTANCE; static { CryptoGetAccountBalanceResponse defaultInstance = new CryptoGetAccountBalanceResponse(); // New instances are implicitly immutable so no need to make // immutable. DEFAULT_INSTANCE = defaultInstance; com.google.protobuf.GeneratedMessageLite.registerDefaultInstance( CryptoGetAccountBalanceResponse.class, defaultInstance); } public static com.hedera.hashgraph.sdk.proto.CryptoGetAccountBalanceResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static volatile com.google.protobuf.Parser PARSER; public static com.google.protobuf.Parser parser() { return DEFAULT_INSTANCE.getParserForType(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy