public static enum AccountEvent.EventEnum extends Enum<AccountEvent.EventEnum>
| Enum Constant and Description |
|---|
INACTIVATEACCOUNT |
REFUNDNOTPAIDOUTTRANSFERS |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AccountEvent.EventEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountEvent.EventEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="InactivateAccount") public static final AccountEvent.EventEnum INACTIVATEACCOUNT
@SerializedName(value="RefundNotPaidOutTransfers") public static final AccountEvent.EventEnum REFUNDNOTPAIDOUTTRANSFERS
public static AccountEvent.EventEnum[] values()
for (AccountEvent.EventEnum c : AccountEvent.EventEnum.values()) System.out.println(c);
public static AccountEvent.EventEnum 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 nullpublic String toString()
toString in class Enum<AccountEvent.EventEnum>Copyright © 2022. All rights reserved.