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