public static enum WalletEventVO.WalletEventType extends java.lang.Enum<WalletEventVO.WalletEventType>
Enum Constant and Description |
---|
DEPOSIT |
PROFIT_LOSS |
UNKNOWN |
WITHDRAWAL |
Modifier and Type | Method and Description |
---|---|
static WalletEventVO.WalletEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WalletEventVO.WalletEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WalletEventVO.WalletEventType DEPOSIT
public static final WalletEventVO.WalletEventType WITHDRAWAL
public static final WalletEventVO.WalletEventType PROFIT_LOSS
public static final WalletEventVO.WalletEventType UNKNOWN
public static WalletEventVO.WalletEventType[] values()
for (WalletEventVO.WalletEventType c : WalletEventVO.WalletEventType.values()) System.out.println(c);
public static WalletEventVO.WalletEventType 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