public enum FundAccountType extends Enum<FundAccountType>
| Enum Constant and Description |
|---|
AVAILABLE
可用余额
|
BASIC
基本账户(含可用余额和不可用余额)
|
OPERATION
运营户
|
UNAVAILABLE
不可用余额
|
UNSETTLED
未结算资金
|
| Modifier and Type | Method and Description |
|---|---|
static FundAccountType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FundAccountType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FundAccountType UNSETTLED
public static final FundAccountType AVAILABLE
public static final FundAccountType UNAVAILABLE
public static final FundAccountType OPERATION
public static final FundAccountType BASIC
public static FundAccountType[] values()
for (FundAccountType c : FundAccountType.values()) System.out.println(c);
public static FundAccountType 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 © 2023. All rights reserved.