Exemplo n.º 1
0
 public void setValue(String value) {
   try {
     this.value = getEntry(value, values);
   } catch (KLMSEnumUndefinedKeyException e) {
     e.printStackTrace();
   }
 }
Exemplo n.º 2
0
 public EnumPutFunction(String key) {
   try {
     this.value = getEntry(key, values);
   } catch (KLMSEnumUndefinedKeyException e) {
     e.printStackTrace();
   }
 }