Here you can find the source of nvlInteger(String pString, Integer pInteger)
public static final Integer nvlInteger(String pString, Integer pInteger)
//package com.java2s; //License from project: Open Source License public class Main { public static final Integer INTEGER_MAX_VALUE = new Integer( Integer.MAX_VALUE); public static final Integer nvlInteger(String pString, Integer pInteger) { if (isNull(pString)) { return pInteger; }/* w w w . j a va 2 s .c o m*/ if (pString.equals("unbounded")) { return INTEGER_MAX_VALUE; } return Integer.valueOf(pString); } public static boolean isNull(Object pStringOrObject) { if (pStringOrObject == null || pStringOrObject.equals("")) { return true; } return false; } }