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