public static enum AccountState.StateTypeEnum extends Enum<AccountState.StateTypeEnum>
| Enum Constant and Description |
|---|
LIMITEDPAYOUT |
LIMITEDPROCESSING |
LIMITLESSPAYOUT |
LIMITLESSPROCESSING |
PAYOUT |
PROCESSING |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AccountState.StateTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountState.StateTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="LimitedPayout") public static final AccountState.StateTypeEnum LIMITEDPAYOUT
@SerializedName(value="LimitedProcessing") public static final AccountState.StateTypeEnum LIMITEDPROCESSING
@SerializedName(value="LimitlessPayout") public static final AccountState.StateTypeEnum LIMITLESSPAYOUT
@SerializedName(value="LimitlessProcessing") public static final AccountState.StateTypeEnum LIMITLESSPROCESSING
@SerializedName(value="Payout") public static final AccountState.StateTypeEnum PAYOUT
@SerializedName(value="Processing") public static final AccountState.StateTypeEnum PROCESSING
public static AccountState.StateTypeEnum[] values()
for (AccountState.StateTypeEnum c : AccountState.StateTypeEnum.values()) System.out.println(c);
public static AccountState.StateTypeEnum 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<AccountState.StateTypeEnum>Copyright © 2022. All rights reserved.