public enum FinanceType extends Enum<FinanceType>
| Enum Constant and Description |
|---|
BANK_AGENT
银行业, 适用于商业银行、政策性银行、农村合作银行、村镇银行、开发性金融机构等
|
INSURANCE
保险业, 适用于保险、保险中介、保险代理、保险经纪等保险类业务
|
OTHER
其他金融机构, 适用于财务公司、信托公司、金融资产管理公司、金融租赁公司、汽车金融公司、贷款公司、货币经纪公司、消费金融公司、证券业、金融控股公司、股票、期货、货币兑换、小额贷款公司、金融资产管理、担保公司、商业保理公司、典当行、融资租赁公司、财经咨询等其他金融业务
|
PAYMENT_AGENT
支付机构, 适用于非银行类支付机构
|
TRADE_AND_SETTLE
交易及结算类金融机构, 适用于交易所、登记结算类机构、银行卡清算机构、资金清算中心等
|
| Modifier and Type | Method and Description |
|---|---|
static FinanceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FinanceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FinanceType BANK_AGENT
public static final FinanceType PAYMENT_AGENT
public static final FinanceType INSURANCE
public static final FinanceType TRADE_AND_SETTLE
public static final FinanceType OTHER
public static FinanceType[] values()
for (FinanceType c : FinanceType.values()) System.out.println(c);
public static FinanceType 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.