Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: basic_types.proto
package com.hederahashgraph.api.proto.java;
/**
*
**
* A list of token IDs and amounts representing the transferred out (negative) or into (positive)
* amounts, represented in the lowest denomination of the token
*
*
* Protobuf type {@code proto.TokenTransferList}
*/
public final class TokenTransferList extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:proto.TokenTransferList)
TokenTransferListOrBuilder {
private static final long serialVersionUID = 0L;
// Use TokenTransferList.newBuilder() to construct.
private TokenTransferList(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private TokenTransferList() {
transfers_ = java.util.Collections.emptyList();
nftTransfers_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new TokenTransferList();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private TokenTransferList(
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.TokenID.Builder subBuilder = null;
if (token_ != null) {
subBuilder = token_.toBuilder();
}
token_ = input.readMessage(com.hederahashgraph.api.proto.java.TokenID.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(token_);
token_ = subBuilder.buildPartial();
}
break;
}
case 18: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
transfers_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
transfers_.add(
input.readMessage(com.hederahashgraph.api.proto.java.AccountAmount.parser(), extensionRegistry));
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
nftTransfers_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
nftTransfers_.add(
input.readMessage(com.hederahashgraph.api.proto.java.NftTransfer.parser(), extensionRegistry));
break;
}
case 34: {
com.google.protobuf.UInt32Value.Builder subBuilder = null;
if (expectedDecimals_ != null) {
subBuilder = expectedDecimals_.toBuilder();
}
expectedDecimals_ = input.readMessage(com.google.protobuf.UInt32Value.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(expectedDecimals_);
expectedDecimals_ = subBuilder.buildPartial();
}
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)) {
transfers_ = java.util.Collections.unmodifiableList(transfers_);
}
if (((mutable_bitField0_ & 0x00000002) != 0)) {
nftTransfers_ = java.util.Collections.unmodifiableList(nftTransfers_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_TokenTransferList_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.hederahashgraph.api.proto.java.BasicTypes.internal_static_proto_TokenTransferList_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.hederahashgraph.api.proto.java.TokenTransferList.class, com.hederahashgraph.api.proto.java.TokenTransferList.Builder.class);
}
public static final int TOKEN_FIELD_NUMBER = 1;
private com.hederahashgraph.api.proto.java.TokenID token_;
/**
*
**
* The ID of the token
*
*
* .proto.TokenID token = 1;
* @return Whether the token field is set.
*/
@java.lang.Override
public boolean hasToken() {
return token_ != null;
}
/**
*
**
* Applicable to tokens of type FUNGIBLE_COMMON. Multiple list of AccountAmounts, each of which
* has an account and amount
*
*
* repeated .proto.AccountAmount transfers = 2;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.AccountAmountOrBuilder getTransfersOrBuilder(
int index) {
return transfers_.get(index);
}
public static final int NFTTRANSFERS_FIELD_NUMBER = 3;
private java.util.List nftTransfers_;
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
@java.lang.Override
public int getNftTransfersCount() {
return nftTransfers_.size();
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
@java.lang.Override
public com.hederahashgraph.api.proto.java.NftTransferOrBuilder getNftTransfersOrBuilder(
int index) {
return nftTransfers_.get(index);
}
public static final int EXPECTED_DECIMALS_FIELD_NUMBER = 4;
private com.google.protobuf.UInt32Value expectedDecimals_;
/**
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
*
* .google.protobuf.UInt32Value expected_decimals = 4;
* @return Whether the expectedDecimals field is set.
*/
@java.lang.Override
public boolean hasExpectedDecimals() {
return expectedDecimals_ != null;
}
/**
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
*
* .google.protobuf.UInt32Value expected_decimals = 4;
*/
@java.lang.Override
public com.google.protobuf.UInt32ValueOrBuilder getExpectedDecimalsOrBuilder() {
return getExpectedDecimals();
}
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 (token_ != null) {
output.writeMessage(1, getToken());
}
for (int i = 0; i < transfers_.size(); i++) {
output.writeMessage(2, transfers_.get(i));
}
for (int i = 0; i < nftTransfers_.size(); i++) {
output.writeMessage(3, nftTransfers_.get(i));
}
if (expectedDecimals_ != null) {
output.writeMessage(4, getExpectedDecimals());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (token_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getToken());
}
for (int i = 0; i < transfers_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, transfers_.get(i));
}
for (int i = 0; i < nftTransfers_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, nftTransfers_.get(i));
}
if (expectedDecimals_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(4, getExpectedDecimals());
}
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.TokenTransferList)) {
return super.equals(obj);
}
com.hederahashgraph.api.proto.java.TokenTransferList other = (com.hederahashgraph.api.proto.java.TokenTransferList) obj;
if (hasToken() != other.hasToken()) return false;
if (hasToken()) {
if (!getToken()
.equals(other.getToken())) return false;
}
if (!getTransfersList()
.equals(other.getTransfersList())) return false;
if (!getNftTransfersList()
.equals(other.getNftTransfersList())) return false;
if (hasExpectedDecimals() != other.hasExpectedDecimals()) return false;
if (hasExpectedDecimals()) {
if (!getExpectedDecimals()
.equals(other.getExpectedDecimals())) 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 (hasToken()) {
hash = (37 * hash) + TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getToken().hashCode();
}
if (getTransfersCount() > 0) {
hash = (37 * hash) + TRANSFERS_FIELD_NUMBER;
hash = (53 * hash) + getTransfersList().hashCode();
}
if (getNftTransfersCount() > 0) {
hash = (37 * hash) + NFTTRANSFERS_FIELD_NUMBER;
hash = (53 * hash) + getNftTransfersList().hashCode();
}
if (hasExpectedDecimals()) {
hash = (37 * hash) + EXPECTED_DECIMALS_FIELD_NUMBER;
hash = (53 * hash) + getExpectedDecimals().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.hederahashgraph.api.proto.java.TokenTransferList parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenTransferList 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.TokenTransferList parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenTransferList 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.TokenTransferList parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.hederahashgraph.api.proto.java.TokenTransferList 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.TokenTransferList parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenTransferList 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.TokenTransferList parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.hederahashgraph.api.proto.java.TokenTransferList 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.TokenTransferList 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.TokenTransferList 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.TokenTransferList 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;
}
/**
*
**
* A list of token IDs and amounts representing the transferred out (negative) or into (positive)
* amounts, represented in the lowest denomination of the token
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
public int getNftTransfersCount() {
if (nftTransfersBuilder_ == null) {
return nftTransfers_.size();
} else {
return nftTransfersBuilder_.getCount();
}
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
public Builder setNftTransfers(
int index, com.hederahashgraph.api.proto.java.NftTransfer value) {
if (nftTransfersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureNftTransfersIsMutable();
nftTransfers_.set(index, value);
onChanged();
} else {
nftTransfersBuilder_.setMessage(index, value);
}
return this;
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
public Builder addNftTransfers(com.hederahashgraph.api.proto.java.NftTransfer value) {
if (nftTransfersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureNftTransfersIsMutable();
nftTransfers_.add(value);
onChanged();
} else {
nftTransfersBuilder_.addMessage(value);
}
return this;
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
public Builder addNftTransfers(
int index, com.hederahashgraph.api.proto.java.NftTransfer value) {
if (nftTransfersBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureNftTransfersIsMutable();
nftTransfers_.add(index, value);
onChanged();
} else {
nftTransfersBuilder_.addMessage(index, value);
}
return this;
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
public com.hederahashgraph.api.proto.java.NftTransfer.Builder getNftTransfersBuilder(
int index) {
return getNftTransfersFieldBuilder().getBuilder(index);
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
*
* repeated .proto.NftTransfer nftTransfers = 3;
*/
public com.hederahashgraph.api.proto.java.NftTransferOrBuilder getNftTransfersOrBuilder(
int index) {
if (nftTransfersBuilder_ == null) {
return nftTransfers_.get(index); } else {
return nftTransfersBuilder_.getMessageOrBuilder(index);
}
}
/**
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* Applicable to tokens of type NON_FUNGIBLE_UNIQUE. Multiple list of NftTransfers, each of
* which has a sender and receiver account, including the serial number of the NFT
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
*
* .google.protobuf.UInt32Value expected_decimals = 4;
* @return Whether the expectedDecimals field is set.
*/
public boolean hasExpectedDecimals() {
return expectedDecimalsBuilder_ != null || expectedDecimals_ != null;
}
/**
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
*
* .google.protobuf.UInt32Value expected_decimals = 4;
*/
public Builder setExpectedDecimals(com.google.protobuf.UInt32Value value) {
if (expectedDecimalsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
expectedDecimals_ = value;
onChanged();
} else {
expectedDecimalsBuilder_.setMessage(value);
}
return this;
}
/**
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
**
* If present, the number of decimals this fungible token type is expected to have. The transfer
* will fail with UNEXPECTED_TOKEN_DECIMALS if the actual decimals differ.
*
*
* .google.protobuf.UInt32Value expected_decimals = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.UInt32Value, com.google.protobuf.UInt32Value.Builder, com.google.protobuf.UInt32ValueOrBuilder>
getExpectedDecimalsFieldBuilder() {
if (expectedDecimalsBuilder_ == null) {
expectedDecimalsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.UInt32Value, com.google.protobuf.UInt32Value.Builder, com.google.protobuf.UInt32ValueOrBuilder>(
getExpectedDecimals(),
getParentForChildren(),
isClean());
expectedDecimals_ = null;
}
return expectedDecimalsBuilder_;
}
@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.TokenTransferList)
}
// @@protoc_insertion_point(class_scope:proto.TokenTransferList)
private static final com.hederahashgraph.api.proto.java.TokenTransferList DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.hederahashgraph.api.proto.java.TokenTransferList();
}
public static com.hederahashgraph.api.proto.java.TokenTransferList getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public TokenTransferList parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new TokenTransferList(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.TokenTransferList getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}