Open In App

DecimalFormat getPositiveSuffix() method in Java

Last Updated : 01 Apr, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The getPositiveSuffix() method of the DecimalFormat class in Java is used to get the positive suffix value of this DecimalFormat instance.

Syntax:

public String getPositiveSuffix()

Parameters: This method does not accepts any parameter.

Return Value: This method returns the positive suffix value of this DecimalFormat instance.

Below program illustrate the above method:




// Java program to illustrate the
// getPositiveSuffix() method
  
import java.text.DecimalFormat;
  
public class GFG {
  
    public static void main(String[] args)
    {
  
        // Create a DecimalFormat instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Set a positive suffix value
        deciFormat.setPositiveSuffix("positive");
  
        // Get the positive suffix value
        String positiveSuffix = deciFormat.getPositiveSuffix();
  
        System.out.println(positiveSuffix);
    }
}


Output:

positive

Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getPositiveSuffix()


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads