Open In App

DecimalFormat getPositivePrefix() method in Java

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax:

public String getPositivePrefix()

Parameters: This method does not accepts any parameter.

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

Below program illustrate the above method:




// Java program to illustrate the
// getPositivePrefix() 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 prefix value
        deciFormat.setPositivePrefix("positive");
  
        // Get the positive prefix value
        String positivePrefix = deciFormat.getPositivePrefix();
  
        System.out.println(positivePrefix);
    }
}


Output:

positive

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


Last Updated : 01 Apr, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads