Java NumberFormat .getRoundingMode ()
Syntax
NumberFormat.getRoundingMode() has the following syntax.
public RoundingMode getRoundingMode()
Example
In the following code shows how to use NumberFormat.getRoundingMode() method.
import java.text.NumberFormat;
import java.util.Locale;
//from w w w. j a va2s. c o m
public class Main {
public static void main(String[] args) throws Exception {
NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
System.out.println(numberFormat.getRoundingMode());
}
}