// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: crypto_delete.proto
package com.hedera.hashgraph.sdk.proto;
/**
*
**
* Mark an account as deleted, moving all its current hbars to another account. It will remain in
* the ledger, marked as deleted, until it expires. Transfers into it a deleted account fail. But a
* deleted account can still have its expiration extended in the normal way.
*
*
* Protobuf type {@code proto.CryptoDeleteTransactionBody}
*/
public final class CryptoDeleteTransactionBody extends
com.google.protobuf.GeneratedMessageLite<
CryptoDeleteTransactionBody, CryptoDeleteTransactionBody.Builder> implements
// @@protoc_insertion_point(message_implements:proto.CryptoDeleteTransactionBody)
CryptoDeleteTransactionBodyOrBuilder {
private CryptoDeleteTransactionBody() {
}
public static final int TRANSFERACCOUNTID_FIELD_NUMBER = 1;
private com.hedera.hashgraph.sdk.proto.AccountID transferAccountID_;
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
@java.lang.Override
public boolean hasTransferAccountID() {
return transferAccountID_ != null;
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getTransferAccountID() {
return transferAccountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : transferAccountID_;
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
private void setTransferAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
value.getClass();
transferAccountID_ = value;
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeTransferAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
value.getClass();
if (transferAccountID_ != null &&
transferAccountID_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) {
transferAccountID_ =
com.hedera.hashgraph.sdk.proto.AccountID.newBuilder(transferAccountID_).mergeFrom(value).buildPartial();
} else {
transferAccountID_ = value;
}
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
private void clearTransferAccountID() { transferAccountID_ = null;
}
public static final int DELETEACCOUNTID_FIELD_NUMBER = 2;
private com.hedera.hashgraph.sdk.proto.AccountID deleteAccountID_;
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
@java.lang.Override
public boolean hasDeleteAccountID() {
return deleteAccountID_ != null;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getDeleteAccountID() {
return deleteAccountID_ == null ? com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance() : deleteAccountID_;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
private void setDeleteAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
value.getClass();
deleteAccountID_ = value;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeDeleteAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
value.getClass();
if (deleteAccountID_ != null &&
deleteAccountID_ != com.hedera.hashgraph.sdk.proto.AccountID.getDefaultInstance()) {
deleteAccountID_ =
com.hedera.hashgraph.sdk.proto.AccountID.newBuilder(deleteAccountID_).mergeFrom(value).buildPartial();
} else {
deleteAccountID_ = value;
}
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
private void clearDeleteAccountID() { deleteAccountID_ = null;
}
public static com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody 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.CryptoDeleteTransactionBody prototype) {
return (Builder) DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
*
**
* Mark an account as deleted, moving all its current hbars to another account. It will remain in
* the ledger, marked as deleted, until it expires. Transfers into it a deleted account fail. But a
* deleted account can still have its expiration extended in the normal way.
*
*
* Protobuf type {@code proto.CryptoDeleteTransactionBody}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody, Builder> implements
// @@protoc_insertion_point(builder_implements:proto.CryptoDeleteTransactionBody)
com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBodyOrBuilder {
// Construct using com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
@java.lang.Override
public boolean hasTransferAccountID() {
return instance.hasTransferAccountID();
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getTransferAccountID() {
return instance.getTransferAccountID();
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
public Builder setTransferAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
copyOnWrite();
instance.setTransferAccountID(value);
return this;
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
public Builder setTransferAccountID(
com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) {
copyOnWrite();
instance.setTransferAccountID(builderForValue.build());
return this;
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
public Builder mergeTransferAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
copyOnWrite();
instance.mergeTransferAccountID(value);
return this;
}
/**
*
**
* The account ID which will receive all remaining hbars
*
*
* .proto.AccountID transferAccountID = 1;
*/
public Builder clearTransferAccountID() { copyOnWrite();
instance.clearTransferAccountID();
return this;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
@java.lang.Override
public boolean hasDeleteAccountID() {
return instance.hasDeleteAccountID();
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
@java.lang.Override
public com.hedera.hashgraph.sdk.proto.AccountID getDeleteAccountID() {
return instance.getDeleteAccountID();
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
public Builder setDeleteAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
copyOnWrite();
instance.setDeleteAccountID(value);
return this;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
public Builder setDeleteAccountID(
com.hedera.hashgraph.sdk.proto.AccountID.Builder builderForValue) {
copyOnWrite();
instance.setDeleteAccountID(builderForValue.build());
return this;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
public Builder mergeDeleteAccountID(com.hedera.hashgraph.sdk.proto.AccountID value) {
copyOnWrite();
instance.mergeDeleteAccountID(value);
return this;
}
/**
*
**
* The account ID which should be deleted
*
*
* .proto.AccountID deleteAccountID = 2;
*/
public Builder clearDeleteAccountID() { copyOnWrite();
instance.clearDeleteAccountID();
return this;
}
// @@protoc_insertion_point(builder_scope:proto.CryptoDeleteTransactionBody)
}
@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.CryptoDeleteTransactionBody();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"transferAccountID_",
"deleteAccountID_",
};
java.lang.String info =
"\u0000\u0002\u0000\u0000\u0001\u0002\u0002\u0000\u0000\u0000\u0001\t\u0002\t";
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.CryptoDeleteTransactionBody.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.CryptoDeleteTransactionBody)
private static final com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody DEFAULT_INSTANCE;
static {
CryptoDeleteTransactionBody defaultInstance = new CryptoDeleteTransactionBody();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
CryptoDeleteTransactionBody.class, defaultInstance);
}
public static com.hedera.hashgraph.sdk.proto.CryptoDeleteTransactionBody getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}