public enum RiskFundType extends Enum<RiskFundType>
| Enum Constant and Description |
|---|
ADVANCE
预付款
|
CASH_DEPOSIT
保证金
|
DEPOSIT
押金
|
ESTIMATE_ORDER_COST
预估订单费用
|
| Modifier and Type | Method and Description |
|---|---|
static RiskFundType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RiskFundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RiskFundType DEPOSIT
public static final RiskFundType ADVANCE
public static final RiskFundType CASH_DEPOSIT
public static final RiskFundType ESTIMATE_ORDER_COST
【先享模式】(评估不通过不可使用服务)
public static RiskFundType[] values()
for (RiskFundType c : RiskFundType.values()) System.out.println(c);
public static RiskFundType 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.