Here you can find the source of getIntegerFormatter()
private static NumberFormat getIntegerFormatter()
//package com.java2s; //License from project: Apache License import java.text.DecimalFormat; import java.text.NumberFormat; public class Main { private static NumberFormat getIntegerFormatter() { return DecimalFormat.getIntegerInstance(); }//from ww w . j av a 2s .c om }