Exemplo n.º 1
0
 @Override
 public ContentSourceType convertFromString(String value) {
   for (ContentSourceType cs : values()) {
     if (cs.getStringRepresentation().equals(value)) {
       return cs;
     }
   }
   return null;
 }
Exemplo n.º 2
0
 @Override
 public String convertToString(ContentSourceType value) {
   return value.getStringRepresentation();
 }