Java DecimalFormat .isParseBigDecimal ()
Syntax
DecimalFormat.isParseBigDecimal() has the following syntax.
public boolean isParseBigDecimal()
Example
In the following code shows how to use DecimalFormat.isParseBigDecimal() method.
/*from ww w . jav a 2 s . c o m*/
import java.text.DecimalFormat;
public class Main {
public static void main(String[] argv) throws Exception {
DecimalFormat format = new DecimalFormat();
System.out.println(format.isParseBigDecimal());
}
}
The code above generates the following result.