Here you can find the source of isBigDecimal(Object v)
public static boolean isBigDecimal(Object v)
//package com.java2s; //License from project: Apache License import java.math.BigDecimal; public class Main { public static boolean isBigDecimal(Object v) { return v instanceof BigDecimal; }/*from www . j av a 2s. c o m*/ }