com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-jdk7 Show documentation
Show all versions of sdk-jdk7 Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_get_account_nft_infos.proto
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.GeneratedMessageLite<
TokenGetAccountNftInfosQuery, TokenGetAccountNftInfosQuery.Builder> implements
// @@protoc_insertion_point(message_implements:proto.TokenGetAccountNftInfosQuery)
TokenGetAccountNftInfosQueryOrBuilder {
private TokenGetAccountNftInfosQuery() {
}
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;
*/
@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;
*/
@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;
*/
private void setHeader(com.hedera.hashgraph.sdk.proto.QueryHeader value) {
value.getClass();
header_ = value;
}
/**
*
**
* 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.SuppressWarnings({"ReferenceEquality"})
private void mergeHeader(com.hedera.hashgraph.sdk.proto.QueryHeader value) {
value.getClass();
if (header_ != null &&
header_ != com.hedera.hashgraph.sdk.proto.QueryHeader.getDefaultInstance()) {
header_ =
com.hedera.hashgraph.sdk.proto.QueryHeader.newBuilder(header_).mergeFrom(value).buildPartial();
} else {
header_ = value;
}
}
/**
*
**
* 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 void clearHeader() { header_ = null;
}
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;
*/
@java.lang.Override
public boolean hasAccountID() {
return accountID_ != null;
}
/**
*
**
* The Account for which information is requested
*
*
* .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 for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
private void setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
value.getClass();
accountID_ = value;
}
/**
*
**
* The Account for which information is requested
*
*
* .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;
}
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
private void clearAccountID() { accountID_ = null;
}
public static final int START_FIELD_NUMBER = 3;
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.
*/
private void setStart(long value) {
start_ = value;
}
/**
*
**
* 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;
*/
private void clearStart() {
start_ = 0L;
}
public static final int END_FIELD_NUMBER = 4;
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.
*/
private void setEnd(long value) {
end_ = value;
}
/**
*
**
* Specifies the end index (exclusive) of the range of NFTs to query for. Value must be in the
* range (start; ownedNFTs]
*
*
* int64 end = 4;
*/
private void clearEnd() {
end_ = 0L;
}
public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery 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.TokenGetAccountNftInfosQuery prototype) {
return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
*
**
* 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.GeneratedMessageLite.Builder<
com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery, Builder> implements
// @@protoc_insertion_point(builder_implements:proto.TokenGetAccountNftInfosQuery)
com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQueryOrBuilder {
// Construct using com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
*
**
* 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 boolean hasHeader() {
return instance.hasHeader();
}
/**
*
**
* 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.QueryHeader getHeader() {
return instance.getHeader();
}
/**
*
**
* 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) {
copyOnWrite();
instance.setHeader(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.hedera.hashgraph.sdk.proto.QueryHeader.Builder builderForValue) {
copyOnWrite();
instance.setHeader(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.hedera.hashgraph.sdk.proto.QueryHeader value) {
copyOnWrite();
instance.mergeHeader(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() { copyOnWrite();
instance.clearHeader();
return this;
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
@java.lang.Override
public boolean hasAccountID() {
return instance.hasAccountID();
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getAccountID() {
return instance.getAccountID();
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
public Builder setAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
copyOnWrite();
instance.setAccountID(value);
return this;
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
public Builder setAccountID(
com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) {
copyOnWrite();
instance.setAccountID(builderForValue.build());
return this;
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
public Builder mergeAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
copyOnWrite();
instance.mergeAccountID(value);
return this;
}
/**
*
**
* The Account for which information is requested
*
*
* .proto.AccountID accountID = 2;
*/
public Builder clearAccountID() { copyOnWrite();
instance.clearAccountID();
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 The start.
*/
@java.lang.Override
public long getStart() {
return instance.getStart();
}
/**
*
**
* 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) {
copyOnWrite();
instance.setStart(value);
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() {
copyOnWrite();
instance.clearStart();
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 The end.
*/
@java.lang.Override
public long getEnd() {
return instance.getEnd();
}
/**
*
**
* 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) {
copyOnWrite();
instance.setEnd(value);
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() {
copyOnWrite();
instance.clearEnd();
return this;
}
// @@protoc_insertion_point(builder_scope:proto.TokenGetAccountNftInfosQuery)
}
@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.TokenGetAccountNftInfosQuery();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"header_",
"accountID_",
"start_",
"end_",
};
java.lang.String info =
"\u0000\u0004\u0000\u0000\u0001\u0004\u0004\u0000\u0000\u0000\u0001\t\u0002\t\u0003" +
"\u0002\u0004\u0002";
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.TokenGetAccountNftInfosQuery.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.TokenGetAccountNftInfosQuery)
private static final com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery DEFAULT_INSTANCE;
static {
TokenGetAccountNftInfosQuery defaultInstance = new TokenGetAccountNftInfosQuery();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
TokenGetAccountNftInfosQuery.class, defaultInstance);
}
public static com.hedera.hashgraph.sdk.proto.TokenGetAccountNftInfosQuery 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