@Override
 public void setMinimumFractionDigits(int value) {
   NativeDecimalFormat.setAttribute(
       this.addr, UNumberFormatAttribute.UNUM_MIN_FRACTION_DIGITS.ordinal(), value);
 }
 @Override
 public int getMinimumFractionDigits() {
   return NativeDecimalFormat.getAttribute(
       this.addr, UNumberFormatAttribute.UNUM_MIN_FRACTION_DIGITS.ordinal());
 }