Open In App

DecimalStyle of(Locale) method in Java with Example

Last Updated : 26 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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));
    }
}


Output:

DecimalStyle for english locale: DecimalStyle[0+-.]

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#of(java.util.Locale)


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads