Java BigDecimal Value Check isJavaMathBigDecimal(Object value)

Here you can find the source of isJavaMathBigDecimal(Object value)

Description

Checks if specified object is instance of java.math.BigDecimal.

License

Open Source License

Parameter

Parameter Description
value a parameter

Declaration

public static boolean isJavaMathBigDecimal(Object value) 

Method Source Code

//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;
    }
}

Related

  1. isDouble(BigDecimal number)
  2. isDoubleOverFlow(final BigDecimal decimal)
  3. isExact(final BigDecimal bd)
  4. isFirstBiggerThanSecond(final BigDecimal first, final BigDecimal second)
  5. isFirstEqualToSecond(final BigDecimal first, final BigDecimal second)
  6. isLessOrEqualThanZero(BigDecimal value)
  7. isLessThan(final BigDecimal thiss, final BigDecimal that)
  8. isLessThen(BigDecimal value1, BigDecimal value2)
  9. isLong(BigDecimal inValue)