How to round up in Java?

To round up in Java, call the Math.ceil method.
double aNumber = 4.3;

Math.ceil(aNumber); // 5.0