Java Format - Java NumberFormat.isGroupingUsed()








Syntax

NumberFormat.isGroupingUsed() has the following syntax.

public boolean isGroupingUsed()

Example

In the following code shows how to use NumberFormat.isGroupingUsed() method.

import java.text.NumberFormat;
import java.util.Locale;

public class Main {
  public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getPercentInstance(Locale.CANADA);
    System.out.println(numberFormat.isGroupingUsed());
  }
}

The code above generates the following result.