com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody Maven / Gradle / Ivy
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: token_associate.proto
package com.hederahashgraph.api.proto.java;
/**
*
**
* Associates the provided account with the provided tokens. Must be signed by the provided
* Account's key.
* If the provided account is not found, the transaction will resolve to INVALID_ACCOUNT_ID.
* If the provided account has been deleted, the transaction will resolve to ACCOUNT_DELETED.
* If any of the provided tokens is not found, the transaction will resolve to INVALID_TOKEN_REF.
* If any of the provided tokens has been deleted, the transaction will resolve to TOKEN_WAS_DELETED.
* If an association between the provided account and any of the tokens already exists, the
* transaction will resolve to TOKEN_ALREADY_ASSOCIATED_TO_ACCOUNT.
* If the provided account's associations count exceed the constraint of maximum token associations
* per account, the transaction will resolve to TOKENS_PER_ACCOUNT_LIMIT_EXCEEDED.
* On success, associations between the provided account and tokens are made and the account is
* ready to interact with the tokens.
*
*
* Protobuf type {@code proto.TokenAssociateTransactionBody}
*/
public final class TokenAssociateTransactionBody extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.TokenAssociateTransactionBody)
TokenAssociateTransactionBodyOrBuilder {
private static final long serialVersionUID = 0L;
// Use TokenAssociateTransactionBody.newBuilder() to construct.
private TokenAssociateTransactionBody(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TokenAssociateTransactionBody() {
tokens_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TokenAssociateTransactionBody();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private TokenAssociateTransactionBody(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
com.hederahashgraph.api.proto.java.AccountID.Builder subBuilder = null;
if (account_ != null) {
subBuilder = account_.toBuilder();
}
account_ = input.readMessage(com.hederahashgraph.api.proto.java.AccountID.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(account_);
account_ = subBuilder.buildPartial();
}
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
tokens_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
tokens_.add(
input.readMessage(com.hederahashgraph.api.proto.java.TokenID.parser(), extensionRegistry));
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 {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
tokens_ = java.util.Collections.unmodifiableList(tokens_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.TokenAssociate.internal_static_proto_TokenAssociateTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.TokenAssociate.internal_static_proto_TokenAssociateTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.class, com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.Builder.class);
}
public static final int ACCOUNT_FIELD_NUMBER = 1;
private com.hederahashgraph.api.proto.java.AccountID account_;
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
* @return Whether the account field is set.
*/
@java.lang.Override
public boolean hasAccount() {
return account_ != null;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
* @return The account.
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountID getAccount() {
return account_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : account_;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountOrBuilder() {
return getAccount();
}
public static final int TOKENS_FIELD_NUMBER = 2;
private java.util.List tokens_;
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
@java.lang.Override
public java.util.List getTokensList() {
return tokens_;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
@java.lang.Override
public java.util.List extends com.hederahashgraph.api.proto.java.TokenIDOrBuilder>
getTokensOrBuilderList() {
return tokens_;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
@java.lang.Override
public int getTokensCount() {
return tokens_.size();
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenID getTokens(int index) {
return tokens_.get(index);
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokensOrBuilder(
int index) {
return tokens_.get(index);
}
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 (account_ != null) {
output.writeMessage(1, getAccount());
}
for (int i = 0; i < tokens_.size(); i++) {
output.writeMessage(2, tokens_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (account_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getAccount());
}
for (int i = 0; i < tokens_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, tokens_.get(i));
}
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.TokenAssociateTransactionBody)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody other = (com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody) obj;
if (hasAccount() != other.hasAccount()) return false;
if (hasAccount()) {
if (!getAccount()
.equals(other.getAccount())) return false;
}
if (!getTokensList()
.equals(other.getTokensList())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasAccount()) {
hash = (37 * hash) + ACCOUNT_FIELD_NUMBER;
hash = (53 * hash) + getAccount().hashCode();
}
if (getTokensCount() > 0) {
hash = (37 * hash) + TOKENS_FIELD_NUMBER;
hash = (53 * hash) + getTokensList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody 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.TokenAssociateTransactionBody 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;
}
/**
*
**
* Associates the provided account with the provided tokens. Must be signed by the provided
* Account's key.
* If the provided account is not found, the transaction will resolve to INVALID_ACCOUNT_ID.
* If the provided account has been deleted, the transaction will resolve to ACCOUNT_DELETED.
* If any of the provided tokens is not found, the transaction will resolve to INVALID_TOKEN_REF.
* If any of the provided tokens has been deleted, the transaction will resolve to TOKEN_WAS_DELETED.
* If an association between the provided account and any of the tokens already exists, the
* transaction will resolve to TOKEN_ALREADY_ASSOCIATED_TO_ACCOUNT.
* If the provided account's associations count exceed the constraint of maximum token associations
* per account, the transaction will resolve to TOKENS_PER_ACCOUNT_LIMIT_EXCEEDED.
* On success, associations between the provided account and tokens are made and the account is
* ready to interact with the tokens.
*
*
* Protobuf type {@code proto.TokenAssociateTransactionBody}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:proto.TokenAssociateTransactionBody)
com.hederahashgraph.api.proto.java.TokenAssociateTransactionBodyOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.TokenAssociate.internal_static_proto_TokenAssociateTransactionBody_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.TokenAssociate.internal_static_proto_TokenAssociateTransactionBody_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.class, com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.Builder.class);
}
// Construct using com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getTokensFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (accountBuilder_ == null) {
account_ = null;
} else {
account_ = null;
accountBuilder_ = null;
}
if (tokensBuilder_ == null) {
tokens_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
tokensBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.hederahashgraph.api.proto.java.TokenAssociate.internal_static_proto_TokenAssociateTransactionBody_descriptor;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody getDefaultInstanceForType() {
return com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.getDefaultInstance();
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody build() {
com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody buildPartial() {
com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody result = new com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody(this);
int from_bitField0_ = bitField0_;
if (accountBuilder_ == null) {
result.account_ = account_;
} else {
result.account_ = accountBuilder_.build();
}
if (tokensBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
tokens_ = java.util.Collections.unmodifiableList(tokens_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.tokens_ = tokens_;
} else {
result.tokens_ = tokensBuilder_.build();
}
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.TokenAssociateTransactionBody) {
return mergeFrom((com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody other) {
if (other == com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody.getDefaultInstance()) return this;
if (other.hasAccount()) {
mergeAccount(other.getAccount());
}
if (tokensBuilder_ == null) {
if (!other.tokens_.isEmpty()) {
if (tokens_.isEmpty()) {
tokens_ = other.tokens_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureTokensIsMutable();
tokens_.addAll(other.tokens_);
}
onChanged();
}
} else {
if (!other.tokens_.isEmpty()) {
if (tokensBuilder_.isEmpty()) {
tokensBuilder_.dispose();
tokensBuilder_ = null;
tokens_ = other.tokens_;
bitField0_ = (bitField0_ & ~0x00000001);
tokensBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getTokensFieldBuilder() : null;
} else {
tokensBuilder_.addAllMessages(other.tokens_);
}
}
}
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.TokenAssociateTransactionBody parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.hederahashgraph.api.proto.java.AccountID account_;
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder> accountBuilder_;
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
* @return Whether the account field is set.
*/
public boolean hasAccount() {
return accountBuilder_ != null || account_ != null;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
* @return The account.
*/
public com.hederahashgraph.api.proto.java.AccountID getAccount() {
if (accountBuilder_ == null) {
return account_ == null ? com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : account_;
} else {
return accountBuilder_.getMessage();
}
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
public Builder setAccount(com.hederahashgraph.api.proto.java.AccountID value) {
if (accountBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
account_ = value;
onChanged();
} else {
accountBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
public Builder setAccount(
com.hederahashgraph.api.proto.java.AccountID.Builder builderForValue) {
if (accountBuilder_ == null) {
account_ = builderForValue.build();
onChanged();
} else {
accountBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
public Builder mergeAccount(com.hederahashgraph.api.proto.java.AccountID value) {
if (accountBuilder_ == null) {
if (account_ != null) {
account_ =
com.hederahashgraph.api.proto.java.AccountID.newBuilder(account_).mergeFrom(value).buildPartial();
} else {
account_ = value;
}
onChanged();
} else {
accountBuilder_.mergeFrom(value);
}
return this;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
public Builder clearAccount() {
if (accountBuilder_ == null) {
account_ = null;
onChanged();
} else {
account_ = null;
accountBuilder_ = null;
}
return this;
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
public com.hederahashgraph.api.proto.java.AccountID.Builder getAccountBuilder() {
onChanged();
return getAccountFieldBuilder().getBuilder();
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
public com.hederahashgraph.api.proto.java.AccountIDOrBuilder getAccountOrBuilder() {
if (accountBuilder_ != null) {
return accountBuilder_.getMessageOrBuilder();
} else {
return account_ == null ?
com.hederahashgraph.api.proto.java.AccountID.getDefaultInstance() : account_;
}
}
/**
*
**
* The account to be associated with the provided tokens
*
*
* .proto.AccountID account = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>
getAccountFieldBuilder() {
if (accountBuilder_ == null) {
accountBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.hederahashgraph.api.proto.java.AccountID, com.hederahashgraph.api.proto.java.AccountID.Builder, com.hederahashgraph.api.proto.java.AccountIDOrBuilder>(
getAccount(),
getParentForChildren(),
isClean());
account_ = null;
}
return accountBuilder_;
}
private java.util.List tokens_ =
java.util.Collections.emptyList();
private void ensureTokensIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
tokens_ = new java.util.ArrayList(tokens_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hederahashgraph.api.proto.java.TokenID, com.hederahashgraph.api.proto.java.TokenID.Builder, com.hederahashgraph.api.proto.java.TokenIDOrBuilder> tokensBuilder_;
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public java.util.List getTokensList() {
if (tokensBuilder_ == null) {
return java.util.Collections.unmodifiableList(tokens_);
} else {
return tokensBuilder_.getMessageList();
}
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public int getTokensCount() {
if (tokensBuilder_ == null) {
return tokens_.size();
} else {
return tokensBuilder_.getCount();
}
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public com.hederahashgraph.api.proto.java.TokenID getTokens(int index) {
if (tokensBuilder_ == null) {
return tokens_.get(index);
} else {
return tokensBuilder_.getMessage(index);
}
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder setTokens(
int index, com.hederahashgraph.api.proto.java.TokenID value) {
if (tokensBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTokensIsMutable();
tokens_.set(index, value);
onChanged();
} else {
tokensBuilder_.setMessage(index, value);
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder setTokens(
int index, com.hederahashgraph.api.proto.java.TokenID.Builder builderForValue) {
if (tokensBuilder_ == null) {
ensureTokensIsMutable();
tokens_.set(index, builderForValue.build());
onChanged();
} else {
tokensBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder addTokens(com.hederahashgraph.api.proto.java.TokenID value) {
if (tokensBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTokensIsMutable();
tokens_.add(value);
onChanged();
} else {
tokensBuilder_.addMessage(value);
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder addTokens(
int index, com.hederahashgraph.api.proto.java.TokenID value) {
if (tokensBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureTokensIsMutable();
tokens_.add(index, value);
onChanged();
} else {
tokensBuilder_.addMessage(index, value);
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder addTokens(
com.hederahashgraph.api.proto.java.TokenID.Builder builderForValue) {
if (tokensBuilder_ == null) {
ensureTokensIsMutable();
tokens_.add(builderForValue.build());
onChanged();
} else {
tokensBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder addTokens(
int index, com.hederahashgraph.api.proto.java.TokenID.Builder builderForValue) {
if (tokensBuilder_ == null) {
ensureTokensIsMutable();
tokens_.add(index, builderForValue.build());
onChanged();
} else {
tokensBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder addAllTokens(
java.lang.Iterable extends com.hederahashgraph.api.proto.java.TokenID> values) {
if (tokensBuilder_ == null) {
ensureTokensIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, tokens_);
onChanged();
} else {
tokensBuilder_.addAllMessages(values);
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder clearTokens() {
if (tokensBuilder_ == null) {
tokens_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
tokensBuilder_.clear();
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public Builder removeTokens(int index) {
if (tokensBuilder_ == null) {
ensureTokensIsMutable();
tokens_.remove(index);
onChanged();
} else {
tokensBuilder_.remove(index);
}
return this;
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public com.hederahashgraph.api.proto.java.TokenID.Builder getTokensBuilder(
int index) {
return getTokensFieldBuilder().getBuilder(index);
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public com.hederahashgraph.api.proto.java.TokenIDOrBuilder getTokensOrBuilder(
int index) {
if (tokensBuilder_ == null) {
return tokens_.get(index); } else {
return tokensBuilder_.getMessageOrBuilder(index);
}
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public java.util.List extends com.hederahashgraph.api.proto.java.TokenIDOrBuilder>
getTokensOrBuilderList() {
if (tokensBuilder_ != null) {
return tokensBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(tokens_);
}
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public com.hederahashgraph.api.proto.java.TokenID.Builder addTokensBuilder() {
return getTokensFieldBuilder().addBuilder(
com.hederahashgraph.api.proto.java.TokenID.getDefaultInstance());
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public com.hederahashgraph.api.proto.java.TokenID.Builder addTokensBuilder(
int index) {
return getTokensFieldBuilder().addBuilder(
index, com.hederahashgraph.api.proto.java.TokenID.getDefaultInstance());
}
/**
*
**
* The tokens to be associated with the provided account. In the case of NON_FUNGIBLE_UNIQUE
* Type, once an account is associated, it can hold any number of NFTs (serial numbers) of that
* token type
*
*
* repeated .proto.TokenID tokens = 2;
*/
public java.util.List
getTokensBuilderList() {
return getTokensFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
com.hederahashgraph.api.proto.java.TokenID, com.hederahashgraph.api.proto.java.TokenID.Builder, com.hederahashgraph.api.proto.java.TokenIDOrBuilder>
getTokensFieldBuilder() {
if (tokensBuilder_ == null) {
tokensBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
com.hederahashgraph.api.proto.java.TokenID, com.hederahashgraph.api.proto.java.TokenID.Builder, com.hederahashgraph.api.proto.java.TokenIDOrBuilder>(
tokens_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
tokens_ = null;
}
return tokensBuilder_;
}
@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.TokenAssociateTransactionBody)
}
// @@protoc_insertion_point(class_scope:proto.TokenAssociateTransactionBody)
private static final com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody();
}
public static com.hederahashgraph.api.proto.java.TokenAssociateTransactionBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TokenAssociateTransactionBody parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new TokenAssociateTransactionBody(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.TokenAssociateTransactionBody getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}