public enum TransactionType extends java.lang.Enum<TransactionType>
| Enum Constant and Description |
|---|
AGGREGATE_BONDED
Aggregate bonded transaction type
|
AGGREGATE_COMPLETE
Aggregate complete transaction type.
|
LOCK
Lock transaction type
|
MODIFY_MULTISIG_ACCOUNT
Modify multisig account transaction type.
|
MOSAIC_DEFINITION
Mosaic definition transaction type.
|
MOSAIC_SUPPLY_CHANGE
Mosaic supply change transaction.
|
REGISTER_NAMESPACE
Register namespace transaction type.
|
SECRET_LOCK
Secret Lock Transaction type
|
SECRET_PROOF
Secret Proof transaction type
|
TRANSFER
Transfer Transaction transaction type.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Returns enum value.
|
static TransactionType |
rawValueOf(int value)
Static constructor converting transaction type raw value to enum instance.
|
static TransactionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionType AGGREGATE_COMPLETE
public static final TransactionType AGGREGATE_BONDED
public static final TransactionType MOSAIC_DEFINITION
public static final TransactionType MOSAIC_SUPPLY_CHANGE
public static final TransactionType MODIFY_MULTISIG_ACCOUNT
public static final TransactionType REGISTER_NAMESPACE
public static final TransactionType TRANSFER
public static final TransactionType LOCK
public static final TransactionType SECRET_LOCK
public static final TransactionType SECRET_PROOF
public static TransactionType[] values()
for (TransactionType c : TransactionType.values()) System.out.println(c);
public static TransactionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static TransactionType rawValueOf(int value)
TransactionType