public enum TransactionGroup extends java.lang.Enum<TransactionGroup>
Enum Constant and Description |
---|
CONFIRMED
Confirmed: The transaction is included in a block.
|
PARTIAL
The transaction requires to be cosigned by other transaction participants in order to be
included in a block.
|
UNCONFIRMED
The transaction reached * the P2P network.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static TransactionGroup |
rawValueOf(java.lang.String value) |
static TransactionGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionGroup UNCONFIRMED
public static final TransactionGroup CONFIRMED
public static final TransactionGroup PARTIAL
public static TransactionGroup[] values()
for (TransactionGroup c : TransactionGroup.values()) System.out.println(c);
public static TransactionGroup 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 java.lang.String getValue()
public static TransactionGroup rawValueOf(java.lang.String value)