public static enum TxView.Type extends java.lang.Enum<TxView.Type>
| Enum Constant and Description |
|---|
TRANSACTION_INFO |
TRANSACTION_WITH_RICH_STATUS |
| Modifier and Type | Method and Description |
|---|---|
static TxView.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TxView.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="TransactionInfo") public static final TxView.Type TRANSACTION_INFO
@SerializedName(value="TransactionWithRichStatus") public static final TxView.Type TRANSACTION_WITH_RICH_STATUS
public static TxView.Type[] values()
for (TxView.Type c : TxView.Type.values()) System.out.println(c);
public static TxView.Type 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