Open In App

DecimalStyle getPositiveSign() method in Java with Example

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

The getPositiveSign() method of java.time.format.DecimalStyle class in Java is used to get the character that is used to represent positive sign for the Locale of this DecimalStyle. This method returns the character for positive sign of that Locale.

Syntax:

public char getPositiveSign()

Parameter: This method do not accept any parameter.

Return Value: This method returns a character which represent the positive sign 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 ds
            = DecimalStyle.STANDARD;
  
        System.out.println("Character used "
                           + "for positive sign: "
                           + ds.getPositiveSign());
    }
}


Output:

Character used for positive sign: +

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


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

Similar Reads