public String getIsValidatedStr() { String str = ""; Object obj = EnumUtils.toMap(IsValidatedEnum.class).get(isValidated); if (obj != null) { str = obj.toString(); } return str; }
public String getCostTypeStr() { String str = ""; Object obj = EnumUtils.toMap(CostTypeEnum.class).get(costType); if (obj != null) { str = obj.toString(); } return str; }
public String getSexStr() { String str = ""; Object obj = EnumUtils.toMap(SexEnum.class).get(sex); if (obj != null) { str = obj.toString(); } return str; }