The of(Locale) method of java.time.format.DecimalStyle class in Java is used to get the DecimalStyle instance for the specified locale.
Syntax:
public static DecimalStyle of(Locale locale)
Parameter: This method accepts a parameter locale for which this DecimalStyle is required.
Return Value: This method returns a DecimalStyle instance for the specified locale.
Exception: This method do not throw any Exception.
Program:
| // Java program to demonstrate// the above method Âimportjava.time.format.*;importjava.util.*; ÂpublicclassDecimalStyleDemo {    publicstaticvoidmain(String[] args)    { Â        DecimalStyle ds            = DecimalStyle.STANDARD; Â        Locale locale = newLocale("ENGLISH"); Â        System.out.println("DecimalStyle for "                           + locale + " locale: "                           + ds.of(locale));    }} | 
DecimalStyle for english locale: DecimalStyle[0+-.]
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#of(java.util.Locale)

 
                                    







