Java Format - 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   w w  w  .  j  a v a 2  s.  co  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.