Here you can find the source of isJavaMathBigDecimal(Object value)
Parameter | Description |
---|---|
value | a parameter |
public static boolean isJavaMathBigDecimal(Object value)
//package com.java2s; /******************************************************************************* * Copyright (c) 2010 Actuate Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors:/*from www.j a va 2s . com*/ * Actuate Corporation - initial API and implementation *******************************************************************************/ public class Main { /** * Checks if specified object is instance of java.math.BigDecimal. * * @param value * @return */ public static boolean isJavaMathBigDecimal(Object value) { return value instanceof java.math.BigDecimal; } }