Java NumberFormat .getIntegerInstance ()
Syntax
NumberFormat.getIntegerInstance() has the following syntax.
public static final NumberFormat getIntegerInstance()
Example
In the following code shows how to use NumberFormat.getIntegerInstance() method.
import java.text.NumberFormat;
/*w w w . j av a2 s . c o m*/
public class Main {
public static void main(String[] args) throws Exception {
NumberFormat numberFormat = NumberFormat.getIntegerInstance();
System.out.println(numberFormat.getMaximumFractionDigits());
}
}