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

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

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

package com.hederahashgraph.api.proto.java;

/**
 * 
 **
 * Get the balance of a cryptocurrency account. This returns only the balance, so it is a smaller
 * reply than CryptoGetInfo, which returns the balance plus additional information.
 * 
* * Protobuf type {@code proto.CryptoGetAccountBalanceQuery} */ public final class CryptoGetAccountBalanceQuery extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.CryptoGetAccountBalanceQuery) CryptoGetAccountBalanceQueryOrBuilder { private static final long serialVersionUID = 0L; // Use CryptoGetAccountBalanceQuery.newBuilder() to construct. private CryptoGetAccountBalanceQuery(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private CryptoGetAccountBalanceQuery() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new CryptoGetAccountBalanceQuery(); } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return this.unknownFields; } private CryptoGetAccountBalanceQuery( 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.QueryHeader.Builder subBuilder = null; if (header_ != null) { subBuilder = header_.toBuilder(); } header_ = input.readMessage(com.hederahashgraph.api.proto.java.QueryHeader.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(header_); header_ = subBuilder.buildPartial(); } break; } case 18: { com.hederahashgraph.api.proto.java.AccountID.Builder subBuilder = null; if (balanceSourceCase_ == 2) { subBuilder = ((com.hederahashgraph.api.proto.java.AccountID) balanceSource_).toBuilder(); } balanceSource_ = input.readMessage(com.hederahashgraph.api.proto.java.AccountID.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((com.hederahashgraph.api.proto.java.AccountID) balanceSource_); balanceSource_ = subBuilder.buildPartial(); } balanceSourceCase_ = 2; break; } case 26: { com.hederahashgraph.api.proto.java.ContractID.Builder subBuilder = null; if (balanceSourceCase_ == 3) { subBuilder = ((com.hederahashgraph.api.proto.java.ContractID) balanceSource_).toBuilder(); } balanceSource_ = input.readMessage(com.hederahashgraph.api.proto.java.ContractID.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom((com.hederahashgraph.api.proto.java.ContractID) balanceSource_); balanceSource_ = subBuilder.buildPartial(); } balanceSourceCase_ = 3; 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.CryptoGetAccountBalance.internal_static_proto_CryptoGetAccountBalanceQuery_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.CryptoGetAccountBalance.internal_static_proto_CryptoGetAccountBalanceQuery_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.class, com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.Builder.class); } private int balanceSourceCase_ = 0; private java.lang.Object balanceSource_; public enum BalanceSourceCase implements com.google.protobuf.Internal.EnumLite, com.google.protobuf.AbstractMessage.InternalOneOfEnum { ACCOUNTID(2), CONTRACTID(3), BALANCESOURCE_NOT_SET(0); private final int value; private BalanceSourceCase(int value) { this.value = value; } /** * @param value The number of the enum to look for. * @return The enum associated with the given number. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static BalanceSourceCase valueOf(int value) { return forNumber(value); } public static BalanceSourceCase forNumber(int value) { switch (value) { case 2: return ACCOUNTID; case 3: return CONTRACTID; case 0: return BALANCESOURCE_NOT_SET; default: return null; } } public int getNumber() { return this.value; } }; public BalanceSourceCase getBalanceSourceCase() { return BalanceSourceCase.forNumber( balanceSourceCase_); } public static final int HEADER_FIELD_NUMBER = 1; private com.hederahashgraph.api.proto.java.QueryHeader header_; /** *
   **
   * Standard info sent from client to node, including the signed payment, and what kind of
   * response is requested (cost, state proof, both, or neither).
   * 
* * .proto.QueryHeader header = 1; * @return Whether the header field is set. */ @java.lang.Override public boolean hasHeader() { return header_ != null; } /** *
   **
   * Standard info sent from client to node, including the signed payment, and what kind of
   * response is requested (cost, state proof, both, or neither).
   * 
* * .proto.QueryHeader header = 1; * @return The header. */ @java.lang.Override public com.hederahashgraph.api.proto.java.QueryHeader getHeader() { return header_ == null ? com.hederahashgraph.api.proto.java.QueryHeader.getDefaultInstance() : header_; } /** *
   **
   * Standard info sent from client to node, including the signed payment, and what kind of
   * response is requested (cost, state proof, both, or neither).
   * 
* * .proto.QueryHeader header = 1; */ @java.lang.Override public com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder getHeaderOrBuilder() { return getHeader(); } public static final int ACCOUNTID_FIELD_NUMBER = 2; /** *
   **
   * The account ID for which information is requested
   * 
* * .proto.AccountID accountID = 2; * @return Whether the accountID field is set. */ @java.lang.Override public boolean hasAccountID() { return balanceSourceCase_ == 2; } /** *
   **
   * The account ID for which information is requested
   * 
* * .proto.AccountID accountID = 2; * @return The accountID. */ @java.lang.Override public com.hederahashgraph.api.proto.java.AccountID getAccountID() { if (balanceSourceCase_ == 2) { return (com.hederahashgraph.api.proto.java.AccountID) balanceSource_; } return com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance(); } /** *
   **
   * The account ID for which information is requested
   * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountIDOrBuilder() { if (balanceSourceCase_ == 2) { return (com.hederahashgraph.api.proto.java.AccountID) balanceSource_; } return com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance(); } public static final int CONTRACTID_FIELD_NUMBER = 3; /** *
   **
   * The account ID for which information is requested
   * 
* * .proto.ContractID contractID = 3; * @return Whether the contractID field is set. */ @java.lang.Override public boolean hasContractID() { return balanceSourceCase_ == 3; } /** *
   **
   * The account ID for which information is requested
   * 
* * .proto.ContractID contractID = 3; * @return The contractID. */ @java.lang.Override public com.hederahashgraph.api.proto.java.ContractID getContractID() { if (balanceSourceCase_ == 3) { return (com.hederahashgraph.api.proto.java.ContractID) balanceSource_; } return com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance(); } /** *
   **
   * The account ID for which information is requested
   * 
* * .proto.ContractID contractID = 3; */ @java.lang.Override public com.hederahashgraph.api.proto.java.ContractIDOrBuilder getContractIDOrBuilder() { if (balanceSourceCase_ == 3) { return (com.hederahashgraph.api.proto.java.ContractID) balanceSource_; } return com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance(); } 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 (header_ != null) { output.writeMessage(1, getHeader()); } if (balanceSourceCase_ == 2) { output.writeMessage(2, (com.hederahashgraph.api.proto.java.AccountID) balanceSource_); } if (balanceSourceCase_ == 3) { output.writeMessage(3, (com.hederahashgraph.api.proto.java.ContractID) balanceSource_); } unknownFields.writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (header_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getHeader()); } if (balanceSourceCase_ == 2) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, (com.hederahashgraph.api.proto.java.AccountID) balanceSource_); } if (balanceSourceCase_ == 3) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(3, (com.hederahashgraph.api.proto.java.ContractID) balanceSource_); } 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.CryptoGetAccountBalanceQuery)) { return super.equals(obj); } com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery other = (com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery) obj; if (hasHeader() != other.hasHeader()) return false; if (hasHeader()) { if (!getHeader() .equals(other.getHeader())) return false; } if (!getBalanceSourceCase().equals(other.getBalanceSourceCase())) return false; switch (balanceSourceCase_) { case 2: if (!getAccountID() .equals(other.getAccountID())) return false; break; case 3: if (!getContractID() .equals(other.getContractID())) return false; break; case 0: default: } 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 (hasHeader()) { hash = (37 * hash) + HEADER_FIELD_NUMBER; hash = (53 * hash) + getHeader().hashCode(); } switch (balanceSourceCase_) { case 2: hash = (37 * hash) + ACCOUNTID_FIELD_NUMBER; hash = (53 * hash) + getAccountID().hashCode(); break; case 3: hash = (37 * hash) + CONTRACTID_FIELD_NUMBER; hash = (53 * hash) + getContractID().hashCode(); break; case 0: default: } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery 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.CryptoGetAccountBalanceQuery 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; } /** *
   **
   * Get the balance of a cryptocurrency account. This returns only the balance, so it is a smaller
   * reply than CryptoGetInfo, which returns the balance plus additional information.
   * 
* * Protobuf type {@code proto.CryptoGetAccountBalanceQuery} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.CryptoGetAccountBalanceQuery) com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQueryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hederahashgraph.api.proto.java.CryptoGetAccountBalance.internal_static_proto_CryptoGetAccountBalanceQuery_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hederahashgraph.api.proto.java.CryptoGetAccountBalance.internal_static_proto_CryptoGetAccountBalanceQuery_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.class, com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.Builder.class); } // Construct using com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.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 (headerBuilder_ == null) { header_ = null; } else { header_ = null; headerBuilder_ = null; } balanceSourceCase_ = 0; balanceSource_ = null; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hederahashgraph.api.proto.java.CryptoGetAccountBalance.internal_static_proto_CryptoGetAccountBalanceQuery_descriptor; } @java.lang.Override public com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery getDefaultInstanceForType() { return com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.getDefaultInstance(); } @java.lang.Override public com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery build() { com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery buildPartial() { com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery result = new com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery(this); if (headerBuilder_ == null) { result.header_ = header_; } else { result.header_ = headerBuilder_.build(); } if (balanceSourceCase_ == 2) { if (accountIDBuilder_ == null) { result.balanceSource_ = balanceSource_; } else { result.balanceSource_ = accountIDBuilder_.build(); } } if (balanceSourceCase_ == 3) { if (contractIDBuilder_ == null) { result.balanceSource_ = balanceSource_; } else { result.balanceSource_ = contractIDBuilder_.build(); } } result.balanceSourceCase_ = balanceSourceCase_; 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.CryptoGetAccountBalanceQuery) { return mergeFrom((com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery other) { if (other == com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery.getDefaultInstance()) return this; if (other.hasHeader()) { mergeHeader(other.getHeader()); } switch (other.getBalanceSourceCase()) { case ACCOUNTID: { mergeAccountID(other.getAccountID()); break; } case CONTRACTID: { mergeContractID(other.getContractID()); break; } case BALANCESOURCE_NOT_SET: { break; } } 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.CryptoGetAccountBalanceQuery parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int balanceSourceCase_ = 0; private java.lang.Object balanceSource_; public BalanceSourceCase getBalanceSourceCase() { return BalanceSourceCase.forNumber( balanceSourceCase_); } public Builder clearBalanceSource() { balanceSourceCase_ = 0; balanceSource_ = null; onChanged(); return this; } private com.hederahashgraph.api.proto.java.QueryHeader header_; private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.QueryHeader, com.hederahashgraph.api.proto.java.QueryHeader.Builder, com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder> headerBuilder_; /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; * @return Whether the header field is set. */ public boolean hasHeader() { return headerBuilder_ != null || header_ != null; } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; * @return The header. */ public com.hederahashgraph.api.proto.java.QueryHeader getHeader() { if (headerBuilder_ == null) { return header_ == null ? com.hederahashgraph.api.proto.java.QueryHeader.getDefaultInstance() : header_; } else { return headerBuilder_.getMessage(); } } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ public Builder setHeader(com.hederahashgraph.api.proto.java.QueryHeader value) { if (headerBuilder_ == null) { if (value == null) { throw new NullPointerException(); } header_ = value; onChanged(); } else { headerBuilder_.setMessage(value); } return this; } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ public Builder setHeader( com.hederahashgraph.api.proto.java.QueryHeader.Builder builderForValue) { if (headerBuilder_ == null) { header_ = builderForValue.build(); onChanged(); } else { headerBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ public Builder mergeHeader(com.hederahashgraph.api.proto.java.QueryHeader value) { if (headerBuilder_ == null) { if (header_ != null) { header_ = com.hederahashgraph.api.proto.java.QueryHeader.newBuilder(header_).mergeFrom(value).buildPartial(); } else { header_ = value; } onChanged(); } else { headerBuilder_.mergeFrom(value); } return this; } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ public Builder clearHeader() { if (headerBuilder_ == null) { header_ = null; onChanged(); } else { header_ = null; headerBuilder_ = null; } return this; } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ public com.hederahashgraph.api.proto.java.QueryHeader.Builder getHeaderBuilder() { onChanged(); return getHeaderFieldBuilder().getBuilder(); } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ public com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder getHeaderOrBuilder() { if (headerBuilder_ != null) { return headerBuilder_.getMessageOrBuilder(); } else { return header_ == null ? com.hederahashgraph.api.proto.java.QueryHeader.getDefaultInstance() : header_; } } /** *
     **
     * Standard info sent from client to node, including the signed payment, and what kind of
     * response is requested (cost, state proof, both, or neither).
     * 
* * .proto.QueryHeader header = 1; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.QueryHeader, com.hederahashgraph.api.proto.java.QueryHeader.Builder, com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder> getHeaderFieldBuilder() { if (headerBuilder_ == null) { headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.QueryHeader, com.hederahashgraph.api.proto.java.QueryHeader.Builder, com.hederahashgraph.api.proto.java.QueryHeaderOrBuilder>( getHeader(), getParentForChildren(), isClean()); header_ = null; } return headerBuilder_; } 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 for which information is requested
     * 
* * .proto.AccountID accountID = 2; * @return Whether the accountID field is set. */ @java.lang.Override public boolean hasAccountID() { return balanceSourceCase_ == 2; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; * @return The accountID. */ @java.lang.Override public com.hederahashgraph.api.proto.java.AccountID getAccountID() { if (accountIDBuilder_ == null) { if (balanceSourceCase_ == 2) { return (com.hederahashgraph.api.proto.java.AccountID) balanceSource_; } return com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance(); } else { if (balanceSourceCase_ == 2) { return accountIDBuilder_.getMessage(); } return com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance(); } } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder setAccountID(com.hederahashgraph.api.proto.java.AccountID value) { if (accountIDBuilder_ == null) { if (value == null) { throw new NullPointerException(); } balanceSource_ = value; onChanged(); } else { accountIDBuilder_.setMessage(value); } balanceSourceCase_ = 2; return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder setAccountID( com.hederahashgraph.api.proto.java.AccountID.Builder builderForValue) { if (accountIDBuilder_ == null) { balanceSource_ = builderForValue.build(); onChanged(); } else { accountIDBuilder_.setMessage(builderForValue.build()); } balanceSourceCase_ = 2; return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder mergeAccountID(com.hederahashgraph.api.proto.java.AccountID value) { if (accountIDBuilder_ == null) { if (balanceSourceCase_ == 2 && balanceSource_ != com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance()) { balanceSource_ = com.hederahashgraph.api.proto.java.AccountID.newBuilder((com.hederahashgraph.api.proto.java.AccountID) balanceSource_) .mergeFrom(value).buildPartial(); } else { balanceSource_ = value; } onChanged(); } else { if (balanceSourceCase_ == 2) { accountIDBuilder_.mergeFrom(value); } accountIDBuilder_.setMessage(value); } balanceSourceCase_ = 2; return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder clearAccountID() { if (accountIDBuilder_ == null) { if (balanceSourceCase_ == 2) { balanceSourceCase_ = 0; balanceSource_ = null; onChanged(); } } else { if (balanceSourceCase_ == 2) { balanceSourceCase_ = 0; balanceSource_ = null; } accountIDBuilder_.clear(); } return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public com.hederahashgraph.api.proto.java.AccountID.Builder getAccountIDBuilder() { return getAccountIDFieldBuilder().getBuilder(); } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountIDOrBuilder() { if ((balanceSourceCase_ == 2) && (accountIDBuilder_ != null)) { return accountIDBuilder_.getMessageOrBuilder(); } else { if (balanceSourceCase_ == 2) { return (com.hederahashgraph.api.proto.java.AccountID) balanceSource_; } return com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance(); } } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ 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) { if (!(balanceSourceCase_ == 2)) { balanceSource_ = com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance(); } 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>( (com.hederahashgraph.api.proto.java.AccountID) balanceSource_, getParentForChildren(), isClean()); balanceSource_ = null; } balanceSourceCase_ = 2; onChanged();; return accountIDBuilder_; } private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ContractID, com.hederahashgraph.api.proto.java.ContractID.Builder, com.hederahashgraph.api.proto.java.ContractIDOrBuilder> contractIDBuilder_; /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; * @return Whether the contractID field is set. */ @java.lang.Override public boolean hasContractID() { return balanceSourceCase_ == 3; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; * @return The contractID. */ @java.lang.Override public com.hederahashgraph.api.proto.java.ContractID getContractID() { if (contractIDBuilder_ == null) { if (balanceSourceCase_ == 3) { return (com.hederahashgraph.api.proto.java.ContractID) balanceSource_; } return com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance(); } else { if (balanceSourceCase_ == 3) { return contractIDBuilder_.getMessage(); } return com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance(); } } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ public Builder setContractID(com.hederahashgraph.api.proto.java.ContractID value) { if (contractIDBuilder_ == null) { if (value == null) { throw new NullPointerException(); } balanceSource_ = value; onChanged(); } else { contractIDBuilder_.setMessage(value); } balanceSourceCase_ = 3; return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ public Builder setContractID( com.hederahashgraph.api.proto.java.ContractID.Builder builderForValue) { if (contractIDBuilder_ == null) { balanceSource_ = builderForValue.build(); onChanged(); } else { contractIDBuilder_.setMessage(builderForValue.build()); } balanceSourceCase_ = 3; return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ public Builder mergeContractID(com.hederahashgraph.api.proto.java.ContractID value) { if (contractIDBuilder_ == null) { if (balanceSourceCase_ == 3 && balanceSource_ != com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance()) { balanceSource_ = com.hederahashgraph.api.proto.java.ContractID.newBuilder((com.hederahashgraph.api.proto.java.ContractID) balanceSource_) .mergeFrom(value).buildPartial(); } else { balanceSource_ = value; } onChanged(); } else { if (balanceSourceCase_ == 3) { contractIDBuilder_.mergeFrom(value); } contractIDBuilder_.setMessage(value); } balanceSourceCase_ = 3; return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ public Builder clearContractID() { if (contractIDBuilder_ == null) { if (balanceSourceCase_ == 3) { balanceSourceCase_ = 0; balanceSource_ = null; onChanged(); } } else { if (balanceSourceCase_ == 3) { balanceSourceCase_ = 0; balanceSource_ = null; } contractIDBuilder_.clear(); } return this; } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ public com.hederahashgraph.api.proto.java.ContractID.Builder getContractIDBuilder() { return getContractIDFieldBuilder().getBuilder(); } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ @java.lang.Override public com.hederahashgraph.api.proto.java.ContractIDOrBuilder getContractIDOrBuilder() { if ((balanceSourceCase_ == 3) && (contractIDBuilder_ != null)) { return contractIDBuilder_.getMessageOrBuilder(); } else { if (balanceSourceCase_ == 3) { return (com.hederahashgraph.api.proto.java.ContractID) balanceSource_; } return com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance(); } } /** *
     **
     * The account ID for which information is requested
     * 
* * .proto.ContractID contractID = 3; */ private com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ContractID, com.hederahashgraph.api.proto.java.ContractID.Builder, com.hederahashgraph.api.proto.java.ContractIDOrBuilder> getContractIDFieldBuilder() { if (contractIDBuilder_ == null) { if (!(balanceSourceCase_ == 3)) { balanceSource_ = com.hederahashgraph.api.proto.java.ContractID.getDefaultInstance(); } contractIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hederahashgraph.api.proto.java.ContractID, com.hederahashgraph.api.proto.java.ContractID.Builder, com.hederahashgraph.api.proto.java.ContractIDOrBuilder>( (com.hederahashgraph.api.proto.java.ContractID) balanceSource_, getParentForChildren(), isClean()); balanceSource_ = null; } balanceSourceCase_ = 3; onChanged();; return contractIDBuilder_; } @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.CryptoGetAccountBalanceQuery) } // @@protoc_insertion_point(class_scope:proto.CryptoGetAccountBalanceQuery) private static final com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery(); } public static com.hederahashgraph.api.proto.java.CryptoGetAccountBalanceQuery getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CryptoGetAccountBalanceQuery parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new CryptoGetAccountBalanceQuery(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.CryptoGetAccountBalanceQuery getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy