DecimalFormat getPositivePrefix() method in Java

Last Updated : 1 Apr, 2019
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
// 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()
Comment