Thursday, October 23, 2025
HomeLanguagesJavaDecimalStyle of(Locale) method in Java with Example

DecimalStyle of(Locale) method in Java with Example

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)

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS