Friday, August 29, 2025
HomeLanguagesJavaDecimalFormat getPositiveSuffix() method in Java

DecimalFormat getPositiveSuffix() method in Java

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()

RELATED ARTICLES

Most Popular

Dominic
32247 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6615 POSTS0 COMMENTS
Nicole Veronica
11788 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11835 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7011 POSTS0 COMMENTS
Thapelo Manthata
6686 POSTS0 COMMENTS
Umr Jansen
6699 POSTS0 COMMENTS