DecimalFormatSymbols getInstance(Locale) method in Java with Examples Last Updated : 29 Jul, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The getInstance(Locale) method of java.text.DecimalFormatSymbols class in Java is used to get the DecimalFormatSymbols instance for the specified Locale. This method is final and cannot be overridden or changed. It takes the Locale for which the DecimalFormatSymbols is required, as a parameter and returns the respective instance of that DecimalFormatSymbols. Syntax: public static final DecimalFormatSymbols getInstance(Locale locale) Parameter: This method accepts a parameter Locale which is the locale for which the DecimalFormatSymbols instance is returned. Return Value: This method returns an instance of the DecimalFormatSymbols with the specified Locale. Exception: This method do not throw any Exception. Program: Java // Java program to demonstrate // the above method import java.text.*; import java.util.*; public class DecimalFormatSymbolsDemo { public static void main(String[] args) { DecimalFormatSymbols dfs = new DecimalFormatSymbols(); Locale locale = new Locale("ENGLISH"); System.out.println("DecimalFormatSymbols " + "with ENGLISH Locale: " + dfs.getInstance(locale)); } } Output: DecimalFormatSymbols with ENGLISH Locale: java.text.DecimalFormatSymbols@1073a Reference: https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormatSymbols.html#getInstance-java.util.Locale- Comment More infoAdvertise with us Next Article DecimalFormatSymbols getInstance(Locale) method in Java with Examples S srinam Follow Improve Article Tags : Java Java-Functions Java-text package Java-DecimalFormatSymbols Practice Tags : Java Similar Reads DecimalFormatSymbols getInstance() method in Java with Examples The getInstance() method of java.text.DecimalFormatSymbols class in Java is used to get the DecimalFormatSymbols instance for the default Locale. This method is final and cannot be overridden or changed. Syntax: public static final DdecimalFormatSymbols getInstance() Parameter: This method do not ac 1 min read DecimalFormatSymbols getNaN() method in Java with Examples The getNaN() method of java.text.DecimalFormatSymbols class in Java is used to get the String that is used to represent NaN (Not a Number) for the Locale of this DecimalFormatSymbols. This method returns the String for NaN of that Locale. Syntax: public String getNaN() Parameter: This method do not 1 min read DecimalFormatSymbols getMinusSign() method in Java with Examples The getMinusSign() method of java.text.DecimalFormatSymbols class in Java is used to get the character that is used to represent minus sign for the Locale of this DecimalFormatSymbols. This method returns the character for minus sign of that Locale. Syntax: public char getMinusSign() Parameter: This 1 min read DecimalFormatSymbols getDigit() method in Java with Examples The getDigit() method of java.text.DecimalFormatSymbols class in Java is used to get the character that is used to represent digit for the Locale of this DecimalFormatSymbols. This method returns the character for the digit of that Locale. Syntax: public char getDigit() Parameter: This method do not 1 min read DecimalFormatSymbols getInfinity() method in Java with Examples The getInfinity() method of java.text.DecimalFormatSymbols class in Java is used to get the String that is used to represent infinity for the Locale of this DecimalFormatSymbols. This method returns the String for the infinity of that Locale. Syntax: public String getInfinity() Parameter: This metho 1 min read Like