Here you can find the source of toInteger(String value)
public final static int toInteger(String value)
public class Main{ public final static int toInteger(String value) { try {/*from ww w . j av a 2s.c om*/ return Integer.parseInt(value); } catch (Exception e) { Debug.warning(e); } return 0; } }