Checks if either operand is a BigDecimal. @param obj0 the first operand @param obj1 the second operand @return true if either operand is a BigDecimal
(final Object obj0, final Object obj1)
| 691 | * @return true if either operand is a BigDecimal |
| 692 | */ |
| 693 | public static boolean isBigDecimalOp(final Object obj0, final Object obj1) { |
| 694 | return (obj0 instanceof BigDecimal || obj1 instanceof BigDecimal); |
| 695 | } |
| 696 | |
| 697 | /** |
| 698 | * Checks if either operand is a BigInteger. |