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 import java.time.format.*; import java.util.*; public class DecimalStyleDemo { public static void main(String[] args) { DecimalStyle ds = DecimalStyle.STANDARD; Locale locale = new Locale( "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)