DecimalFormat getMultiplier() method in Java
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()); } } |
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()); } } |
1
Reference: https://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html#getMultiplier()
Recommended Posts:
- DecimalFormat setDecimalFormatSymbols() method in Java
- DecimalFormat setCurrency() method in Java
- DecimalFormat setDecimalSeparatorAlwaysShown() method in Java
- DecimalFormat setRoundingMode() method in Java
- DecimalFormat setMultiplier() method in Java
- DecimalFormat setMinimumFractionDigits() method in Java
- DecimalFormat setMinimumIntegerDigits() method in Java
- DecimalFormat setPositiveSuffix() method in Java
- DecimalFormat setGroupingSize() method in Java
- DecimalFormat setNegativeSuffix() method in Java
- DecimalFormat hashCode() method in Java
- DecimalFormat getRoundingMode() method in Java
- DecimalFormat getMinimumIntegerDigits() method in Java
- DecimalFormat setMaximumIntegerDigits() method in Java
- DecimalFormat setMaximumFractionDigits() method in Java
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.