Thursday, June 11, 2026
HomeLanguagesJavaNumberFormat getRoundingMode() method in Java with Examples

NumberFormat getRoundingMode() method in Java with Examples

The getRoundingMode() method is a built-in method of the java.text.NumberFormat returns the rounding mode which is being used in the given Number Format.

Syntax:

public RoundingMode getRoundingMode()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the rounding Mode which is used for this Number Format.

Below is the implementation of the above function:

Program 1:




// Java program to implement
// the above function
  
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Currency;
  
public class Main {
    public static void main(String[] args)
        throws Exception
    {
  
        // Get the instance for Locale US
        NumberFormat nF
            = NumberFormat.getInstance(
                Locale.US);
  
        // Prints the Rounding Mode
        System.out.println("The rounding mode"
                           + " value is: "
                           + nF.getRoundingMode());
    }
}


Output:

The rounding mode value is: HALF_EVEN

Program 2:




// Java program to implement
// the above function
  
import java.text.NumberFormat;
import java.util.Locale;
import java.util.Currency;
  
public class Main {
    public static void main(String[] args)
        throws Exception
    {
  
        // Get the instance for Locale CANADA
        NumberFormat nF
            = NumberFormat.getInstance(
                Locale.CANADA);
  
        // Prints the Rounding Mode
        System.out.println("The rounding mode"
                           + " value is: "
                           + nF.getRoundingMode());
    }
}


Output:

The rounding mode value is: HALF_EVEN

Reference: https://docs.oracle.com/javase/10/docs/api/java/text/NumberFormat.html#getRoundingMode()

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS