Checks if either operand is a BigInteger. @param obj0 the first operand @param obj1 the second operand @return true if either operand is a BigInteger
(final Object obj0, final Object obj1)
| 703 | * @return true if either operand is a BigInteger |
| 704 | */ |
| 705 | public static boolean isBigIntegerOp(final Object obj0, final Object obj1) { |
| 706 | return (obj0 instanceof BigInteger || obj1 instanceof BigInteger); |
| 707 | } |
| 708 | |
| 709 | /** |
| 710 | * Checks if either operand is a Double or Float. |