Friday, October 10, 2025
HomeLanguagesJavaDecimalStyle toString() method in Java with Example

DecimalStyle toString() method in Java with Example

The toString() method of java.time.format.DecimalStyle class in Java is used to get the String value of this DecimalStyle. This method returns a String representing the String value.

Syntax:

public String toString()

Parameter: This method do not accept any parameter.

Return Value: This method returns a String which is the String value of this DecimalStyle.

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 ds1
            = DecimalStyle.STANDARD;
  
        DecimalStyle ds2
            = DecimalStyle.of(
                new Locale("JAPANESE"));
  
        System.out.println("String value of DS 1: "
                           + ds1.toString());
  
        System.out.println("String value of DS 2: "
                           + ds2.toString());
    }
}


Output:

String value of DS 1: DecimalStyle[0+-.]
String value of DS 2: DecimalStyle[0+-.]

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

RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7101 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS