Returns true if the specified argument is an Object or primitive array, false otherwise. @param obj the object instance to check @return true if the specified argument is an Object or primitive array, false otherwise.
(Object obj)
| 87 | * @return {@code true} if the specified argument is an Object or primitive array, {@code false} otherwise. |
| 88 | */ |
| 89 | public static boolean isArray(Object obj) { |
| 90 | return (obj != null && obj.getClass().isArray()); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Returns {@code true} if the specified argument: |
no outgoing calls
no test coverage detected