public enum TxRequestType extends Enum<TxRequestType>
Value object to provide the following to high level messages:
| Enum Constant and Description |
|---|
TX_FINISHED |
TX_INPUT |
TX_META |
TX_OUTPUT |
| Modifier and Type | Method and Description |
|---|---|
static TxRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TxRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TxRequestType TX_INPUT
public static final TxRequestType TX_OUTPUT
public static final TxRequestType TX_META
public static final TxRequestType TX_FINISHED
public static TxRequestType[] values()
for (TxRequestType c : TxRequestType.values()) System.out.println(c);
public static TxRequestType 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 © 2013–2016 Bitcoin Solutions Ltd. All rights reserved.