Ejemplo n.º 1
0
 public static String printDigit(Digit digit) {
   return "" + digit.getValue();
 }
Ejemplo n.º 2
0
 public static Digit parseDigit(String s) {
   return Digit.fromValue(Integer.parseInt(s));
 }