Returns true if this type is known to be an array type, such as int[], T[], <? extends Map []> etc.
()
| 522 | |
| 523 | |
| 524 | public final boolean isArray() { |
| 525 | return getComponentType() != null; |
| 526 | } |
| 527 | |
| 528 | /** |
| 529 | * Returns true if this type is one of the nine primitive types (including {@code void}). |
no test coverage detected