Enum Class FundsAccount
- All Implemented Interfaces:
Serializable
,Comparable<FundsAccount>
,Constable
UNSETTLED - 未结算资金,退款所使用资金对应的资金账户类型 AVAILABLE - 可用余额,退款所使用资金对应的资金账户类型 UNAVAILABLE -
不可用余额,退款所使用资金对应的资金账户类型 OPERATION - 运营户,退款所使用资金对应的资金账户类型 BASIC -
基本账户(含可用余额和不可用余额),退款所使用资金对应的资金账户类型 ECNY_BASIC - 数字人民币基本账户,退款所使用资金对应的资金账户类型
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic FundsAccount
Returns the enum constant of this class with the specified name.static FundsAccount[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNSETTLED
-
AVAILABLE
-
UNAVAILABLE
-
OPERATION
-
BASIC
-
ECNY_BASIC
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-