public static enum Transaction.TxType extends java.lang.Enum<Transaction.TxType>
Enum Constant and Description |
---|
CALL |
DEPLOY |
FEE_DELEGATION |
GOVERNANCE |
NORMAL
|
REDEPLOY |
TRANSFER |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static Transaction.TxType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Transaction.TxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transaction.TxType UNRECOGNIZED
public static final Transaction.TxType NORMAL
public static final Transaction.TxType GOVERNANCE
public static final Transaction.TxType REDEPLOY
public static final Transaction.TxType FEE_DELEGATION
public static final Transaction.TxType TRANSFER
public static final Transaction.TxType CALL
public static final Transaction.TxType DEPLOY
public static Transaction.TxType[] values()
for (Transaction.TxType c : Transaction.TxType.values()) System.out.println(c);
public static Transaction.TxType 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 null