static int iround(double d) { ret (int) Math.round(d); } static int iround(Number n) { ret iround(toDouble(n)); }