public enum RiskType extends Enum<RiskType>
| 枚举常量和说明 |
|---|
court_discredit
法院失信
|
court_execution
法院执行
|
cross_partner
多平台借贷
|
p2p_discredit
网贷黑名单
|
student_loan
助学贷款
|
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getDisplayName() |
static RiskType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RiskType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RiskType p2p_discredit
public static final RiskType cross_partner
public static final RiskType court_execution
public static final RiskType court_discredit
public static final RiskType student_loan
public static RiskType[] values()
for (RiskType c : RiskType.values()) System.out.println(c);
public static RiskType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getDisplayName()
Copyright © 2016. All rights reserved.