Type conversion method for null. @return null
(final Class c)
| 137 | * @return null |
| 138 | */ |
| 139 | public Object asType(final Class c) { |
| 140 | if (c.isPrimitive()) throw new IllegalArgumentException("null to " + c); |
| 141 | return null; |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Tests for equal references. |
no test coverage detected