Monday, September 23, 2024
Google search engine
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 Rubhabha-Wardslaus
Dominic Rubhabha-Wardslaushttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Recent Comments