public enum AccountEventType extends Enum<AccountEventType>
| Enum Constant and Description |
|---|
AttachingToTangle |
DepositAddress |
DoingProofOfWork |
Error |
Promotion |
Reattachment |
ReceivedDeposit |
ReceivedMessage |
ReceivingDeposit |
SendingTransfer |
Shutdown |
TransferConfirmed |
| Modifier and Type | Method and Description |
|---|---|
static AccountEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountEventType Promotion
public static final AccountEventType Reattachment
public static final AccountEventType SendingTransfer
public static final AccountEventType TransferConfirmed
public static final AccountEventType ReceivedDeposit
public static final AccountEventType ReceivingDeposit
public static final AccountEventType ReceivedMessage
public static final AccountEventType DepositAddress
public static final AccountEventType Shutdown
public static final AccountEventType Error
public static final AccountEventType AttachingToTangle
public static final AccountEventType DoingProofOfWork
public static AccountEventType[] values()
for (AccountEventType c : AccountEventType.values()) System.out.println(c);
public static AccountEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.