Open In App

DecimalFormat getMultiplier() method in Java

Improve
Improve
Like Article
Like
Save
Share
Report

The getMultiplier() method is a built-in method of the java.text.DecimalFomrat class in Java and is used to get the multiplier to be used in different formats like, percentage, percentile etc.

Syntax:

public int getMultiplier()

Parameters: The function does not accepts any parameter.

Return Value: The function returns the multiplier value to be used in different formats.

Below is the implementation of the above function:

Program 1:




// Java program to illustrate the
// getMultiplier() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create the DecimalFormat Instance
        DecimalFormat deciFormat = new DecimalFormat();
  
        // Print the multiplier value
        System.out.println(deciFormat.getMultiplier());
    }
}


Output:

1

Program 2:




// Java program to illustrate the
// getMultiplier() method
  
import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;
  
public class Main {
    public static void main(String[] args)
    {
  
        // Create the DecimalFormat Instance
        DecimalFormat deciFormat = new DecimalFormat();
        deciFormat.getPercentInstance();
  
        // Print the multiplier value
        System.out.println(deciFormat.getMultiplier());
    }
}


Output:

1

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



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