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

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

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

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

/**
 * 
 **
 * Applicable only to tokens of type NON_FUNGIBLE_UNIQUE. Gets info on NFTs N through M owned by the
 * specified accountId.
 * Example: If Account A owns 5 NFTs (might be of different Token Entity), having start=0 and end=5
 * will return all of the NFTs
 *
 * INVALID_QUERY_RANGE response code will be returned if:
 * 1) Start > End
 * 2) Start and End indices are non-positive
 * 3) Start and End indices are out of boundaries for the retrieved nft list
 * 4) The range between Start and End is bigger than the global dynamic property for maximum query
 *    range
 *
 * NOT_SUPPORTED response code will be returned if the queried token is of type FUNGIBLE_COMMON
 *
 * INVALID_ACCOUNT_ID response code will be returned if the queried account does not exist
 *
 * ACCOUNT_DELETED response code will be returned if the queried account has been deleted
 * 
* * Protobuf type {@code proto.TokenGetAccountNftInfosQuery} */ public final class TokenGetAccountNftInfosQuery extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:proto.TokenGetAccountNftInfosQuery) TokenGetAccountNftInfosQueryOrBuilder { private static final long serialVersionUID = 0L; // Use TokenGetAccountNftInfosQuery.newBuilder() to construct. private TokenGetAccountNftInfosQuery(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private TokenGetAccountNftInfosQuery() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new TokenGetAccountNftInfosQuery(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfos.internal_static_proto_TokenGetAccountNftInfosQuery_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfos.internal_static_proto_TokenGetAccountNftInfosQuery_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.class, com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.Builder.class); } private int bitField0_; public static final int HEADER_FIELD_NUMBER = 1; private com.hedera.hashgraph.sdk.proto.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 ((bitField0_ & 0x00000001) != 0); } /** *
   **
   * 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.hedera.hashgraph.sdk.proto.QueryHeader getHeader() { return header_ == null ? com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder getHeaderOrBuilder() { return header_ == null ? com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance() : header_; } public static final int ACCOUNTID_FIELD_NUMBER = 2; private com.hedera.hashgraph.sdk.proto.AccountID accountID_; /** *
   **
   * The Account for which information is requested
   * 
* * .proto.AccountID accountID = 2; * @return Whether the accountID field is set. */ @java.lang.Override public boolean hasAccountID() { return ((bitField0_ & 0x00000002) != 0); } /** *
   **
   * The Account for which information is requested
   * 
* * .proto.AccountID accountID = 2; * @return The accountID. */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() { return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_; } /** *
   **
   * The Account for which information is requested
   * 
* * .proto.AccountID accountID = 2; */ @java.lang.Override public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder() { return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_; } public static final int START_FIELD_NUMBER = 3; private long start_ = 0L; /** *
   **
   * Specifies the start index (inclusive) of the range of NFTs to query for. Value must be in the
   * range [0; ownedNFTs-1]
   * 
* * int64 start = 3; * @return The start. */ @java.lang.Override public long getStart() { return start_; } public static final int END_FIELD_NUMBER = 4; private long end_ = 0L; /** *
   **
   * Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the
   * range (start; ownedNFTs]
   * 
* * int64 end = 4; * @return The end. */ @java.lang.Override public long getEnd() { return end_; } 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, getHeader()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(2, getAccountID()); } if (start_ != 0L) { output.writeInt64(3, start_); } if (end_ != 0L) { output.writeInt64(4, end_); } 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, getHeader()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getAccountID()); } if (start_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(3, start_); } if (end_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, end_); } 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.TokenGetAccountNftInfosQuery)) { return super.equals(obj); } com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery other = (com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery) obj; if (hasHeader() != other.hasHeader()) return false; if (hasHeader()) { if (!getHeader() .equals(other.getHeader())) return false; } if (hasAccountID() != other.hasAccountID()) return false; if (hasAccountID()) { if (!getAccountID() .equals(other.getAccountID())) return false; } if (getStart() != other.getStart()) return false; if (getEnd() != other.getEnd()) 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 (hasHeader()) { hash = (37 * hash) + HEADER_FIELD_NUMBER; hash = (53 * hash) + getHeader().hashCode(); } if (hasAccountID()) { hash = (37 * hash) + ACCOUNTID_FIELD_NUMBER; hash = (53 * hash) + getAccountID().hashCode(); } hash = (37 * hash) + START_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getStart()); hash = (37 * hash) + END_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getEnd()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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; } /** *
   **
   * Applicable only to tokens of type NON_FUNGIBLE_UNIQUE. Gets info on NFTs N through M owned by the
   * specified accountId.
   * Example: If Account A owns 5 NFTs (might be of different Token Entity), having start=0 and end=5
   * will return all of the NFTs
   *
   * INVALID_QUERY_RANGE response code will be returned if:
   * 1) Start > End
   * 2) Start and End indices are non-positive
   * 3) Start and End indices are out of boundaries for the retrieved nft list
   * 4) The range between Start and End is bigger than the global dynamic property for maximum query
   *    range
   *
   * NOT_SUPPORTED response code will be returned if the queried token is of type FUNGIBLE_COMMON
   *
   * INVALID_ACCOUNT_ID response code will be returned if the queried account does not exist
   *
   * ACCOUNT_DELETED response code will be returned if the queried account has been deleted
   * 
* * Protobuf type {@code proto.TokenGetAccountNftInfosQuery} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:proto.TokenGetAccountNftInfosQuery) com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQueryOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfos.internal_static_proto_TokenGetAccountNftInfosQuery_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfos.internal_static_proto_TokenGetAccountNftInfosQuery_fieldAccessorTable .ensureFieldAccessorsInitialized( com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.class, com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.Builder.class); } // Construct using com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getHeaderFieldBuilder(); getAccountIDFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; header_ = null; if (headerBuilder_ != null) { headerBuilder_.dispose(); headerBuilder_ = null; } accountID_ = null; if (accountIDBuilder_ != null) { accountIDBuilder_.dispose(); accountIDBuilder_ = null; } start_ = 0L; end_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfos.internal_static_proto_TokenGetAccountNftInfosQuery_descriptor; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery getDefaultInstanceForType() { return com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.getDefaultInstance(); } @java.lang.Override public com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery build() { com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery buildPartial() { com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery result = new com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery result) { int from_bitField0_ = bitField0_; int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000001) != 0)) { result.header_ = headerBuilder_ == null ? header_ : headerBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000002) != 0)) { result.accountID_ = accountIDBuilder_ == null ? accountID_ : accountIDBuilder_.build(); to_bitField0_ |= 0x00000002; } if (((from_bitField0_ & 0x00000004) != 0)) { result.start_ = start_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.end_ = end_; } 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.TokenGetAccountNftInfosQuery) { return mergeFrom((com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery other) { if (other == com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.getDefaultInstance()) return this; if (other.hasHeader()) { mergeHeader(other.getHeader()); } if (other.hasAccountID()) { mergeAccountID(other.getAccountID()); } if (other.getStart() != 0L) { setStart(other.getStart()); } if (other.getEnd() != 0L) { setEnd(other.getEnd()); } 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( getHeaderFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000001; break; } // case 10 case 18: { input.readMessage( getAccountIDFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 case 24: { start_ = input.readInt64(); bitField0_ |= 0x00000004; break; } // case 24 case 32: { end_ = input.readInt64(); bitField0_ |= 0x00000008; break; } // case 32 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.QueryHeader header_; private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.QueryHeader, com.hedera.hashgraph.sdk.proto.QueryHeader.Builder, com.hedera.hashgraph.sdk.proto.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 ((bitField0_ & 0x00000001) != 0); } /** *
     **
     * 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.hedera.hashgraph.sdk.proto.QueryHeader getHeader() { if (headerBuilder_ == null) { return header_ == null ? com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.QueryHeader value) { if (headerBuilder_ == null) { if (value == null) { throw new NullPointerException(); } header_ = value; } else { headerBuilder_.setMessage(value); } bitField0_ |= 0x00000001; onChanged(); 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.hedera.hashgraph.sdk.proto.QueryHeader.Builder builderForValue) { if (headerBuilder_ == null) { header_ = builderForValue.build(); } else { headerBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000001; onChanged(); 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.hedera.hashgraph.sdk.proto.QueryHeader value) { if (headerBuilder_ == null) { if (((bitField0_ & 0x00000001) != 0) && header_ != null && header_ != com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance()) { getHeaderBuilder().mergeFrom(value); } else { header_ = value; } } else { headerBuilder_.mergeFrom(value); } if (header_ != null) { bitField0_ |= 0x00000001; onChanged(); } 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() { bitField0_ = (bitField0_ & ~0x00000001); header_ = null; if (headerBuilder_ != null) { headerBuilder_.dispose(); headerBuilder_ = null; } onChanged(); 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.hedera.hashgraph.sdk.proto.QueryHeader.Builder getHeaderBuilder() { bitField0_ |= 0x00000001; 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.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder getHeaderOrBuilder() { if (headerBuilder_ != null) { return headerBuilder_.getMessageOrBuilder(); } else { return header_ == null ? com.hedera.hashgraph.sdk.proto.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.hedera.hashgraph.sdk.proto.QueryHeader, com.hedera.hashgraph.sdk.proto.QueryHeader.Builder, com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder> getHeaderFieldBuilder() { if (headerBuilder_ == null) { headerBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.QueryHeader, com.hedera.hashgraph.sdk.proto.QueryHeader.Builder, com.hedera.hashgraph.sdk.proto.QueryHeaderOrBuilder>( getHeader(), getParentForChildren(), isClean()); header_ = null; } return headerBuilder_; } private com.hedera.hashgraph.sdk.proto.AccountID accountID_; private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder> accountIDBuilder_; /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; * @return Whether the accountID field is set. */ public boolean hasAccountID() { return ((bitField0_ & 0x00000002) != 0); } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; * @return The accountID. */ public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() { if (accountIDBuilder_ == null) { return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_; } else { return accountIDBuilder_.getMessage(); } } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) { if (accountIDBuilder_ == null) { if (value == null) { throw new NullPointerException(); } accountID_ = value; } else { accountIDBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder setAccountID( com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) { if (accountIDBuilder_ == null) { accountID_ = builderForValue.build(); } else { accountIDBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder mergeAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) { if (accountIDBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && accountID_ != null && accountID_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) { getAccountIDBuilder().mergeFrom(value); } else { accountID_ = value; } } else { accountIDBuilder_.mergeFrom(value); } if (accountID_ != null) { bitField0_ |= 0x00000002; onChanged(); } return this; } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public Builder clearAccountID() { bitField0_ = (bitField0_ & ~0x00000002); accountID_ = null; if (accountIDBuilder_ != null) { accountIDBuilder_.dispose(); accountIDBuilder_ = null; } onChanged(); return this; } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public com.hedera.hashgraph.sdk.proto.AccountID.Builder getAccountIDBuilder() { bitField0_ |= 0x00000002; onChanged(); return getAccountIDFieldBuilder().getBuilder(); } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ public com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder getAccountIDOrBuilder() { if (accountIDBuilder_ != null) { return accountIDBuilder_.getMessageOrBuilder(); } else { return accountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : accountID_; } } /** *
     **
     * The Account for which information is requested
     * 
* * .proto.AccountID accountID = 2; */ private com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder> getAccountIDFieldBuilder() { if (accountIDBuilder_ == null) { accountIDBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.hedera.hashgraph.sdk.proto.AccountID, com.hedera.hashgraph.sdk.proto.AccountID.Builder, com.hedera.hashgraph.sdk.proto.AccountIDOrBuilder>( getAccountID(), getParentForChildren(), isClean()); accountID_ = null; } return accountIDBuilder_; } private long start_ ; /** *
     **
     * Specifies the start index (inclusive) of the range of NFTs to query for. Value must be in the
     * range [0; ownedNFTs-1]
     * 
* * int64 start = 3; * @return The start. */ @java.lang.Override public long getStart() { return start_; } /** *
     **
     * Specifies the start index (inclusive) of the range of NFTs to query for. Value must be in the
     * range [0; ownedNFTs-1]
     * 
* * int64 start = 3; * @param value The start to set. * @return This builder for chaining. */ public Builder setStart(long value) { start_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** *
     **
     * Specifies the start index (inclusive) of the range of NFTs to query for. Value must be in the
     * range [0; ownedNFTs-1]
     * 
* * int64 start = 3; * @return This builder for chaining. */ public Builder clearStart() { bitField0_ = (bitField0_ & ~0x00000004); start_ = 0L; onChanged(); return this; } private long end_ ; /** *
     **
     * Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the
     * range (start; ownedNFTs]
     * 
* * int64 end = 4; * @return The end. */ @java.lang.Override public long getEnd() { return end_; } /** *
     **
     * Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the
     * range (start; ownedNFTs]
     * 
* * int64 end = 4; * @param value The end to set. * @return This builder for chaining. */ public Builder setEnd(long value) { end_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     **
     * Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the
     * range (start; ownedNFTs]
     * 
* * int64 end = 4; * @return This builder for chaining. */ public Builder clearEnd() { bitField0_ = (bitField0_ & ~0x00000008); end_ = 0L; 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.TokenGetAccountNftInfosQuery) } // @@protoc_insertion_point(class_scope:proto.TokenGetAccountNftInfosQuery) private static final com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery(); } public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy