Java NumberFormat .getMinimumFractionDigits ()
Syntax
NumberFormat.getMinimumFractionDigits() has the following syntax.
public int getMinimumFractionDigits()
Example
In the following code shows how to use NumberFormat.getMinimumFractionDigits() method.
import java.text.NumberFormat;
//from w w w. ja va2 s .com
public class Main {
public static void main(String[] args) throws Exception {
NumberFormat numberFormat = NumberFormat.getIntegerInstance();
System.out.println(numberFormat.getMinimumFractionDigits());
}
}