Here you can find the source of toInteger(String string, Integer deff)
public static Integer toInteger(String string, Integer deff)
//package com.java2s; //License from project: Mozilla Public License public class Main { public static Integer toInteger(String string, Integer deff) { Integer value = deff;//from ww w . j a va 2s. c om try { if (string != null) { value = Integer.valueOf(string.toString()); } } catch (NullPointerException e) { e.printStackTrace(); } return value; } }