Example usage for java.text NumberFormat getMaximumIntegerDigits

List of usage examples for java.text NumberFormat getMaximumIntegerDigits

Introduction

In this page you can find the example usage for java.text NumberFormat getMaximumIntegerDigits.

Prototype

public int getMaximumIntegerDigits() 

Source Link

Document

Returns the maximum number of digits allowed in the integer portion of a number.

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {
    NumberFormat numberFormat = NumberFormat.getIntegerInstance();
    System.out.println(numberFormat.getMaximumIntegerDigits());
}