(Class c)
| 184 | } |
| 185 | |
| 186 | static public boolean isPrimitive(Class c){ |
| 187 | return c != null && c.isPrimitive() && !(c == Void.TYPE); |
| 188 | } |
| 189 | |
| 190 | static public boolean isInteger(Object x){ |
| 191 | return x instanceof Integer |
no outgoing calls
no test coverage detected