RoundingMode.CEILING

Rounding mode to round towards positive infinity. If the result is positive, behaves as for {@code RoundingMode.UP}; if negative, behaves as for {@code RoundingMode.DOWN}. Note that this rounding mode never decreases the calculated value.

<p>Example: <table border> <caption><b>Rounding mode CEILING Examples</b></caption> <tr valign=top><th>Input Number</th> <th>Input rounded to one digit<br> with {@code CEILING} rounding <tr align=right><td>5.5</td> <td>6</td> <tr align=right><td>2.5</td> <td>3</td> <tr align=right><td>1.6</td> <td>2</td> <tr align=right><td>1.1</td> <td>2</td> <tr align=right><td>1.0</td> <td>1</td> <tr align=right><td>-1.0</td> <td>-1</td> <tr align=right><td>-1.1</td> <td>-1</td> <tr align=right><td>-1.6</td> <td>-1</td> <tr align=right><td>-2.5</td> <td>-2</td> <tr align=right><td>-5.5</td> <td>-5</td> </table>

class RoundingMode
static
RoundingMode CEILING;

Meta