Determines whether this ClassNode represents an array type. A ClassNode is an array if its component type has been set. The component type represents the element type of the array (e.g., "int" for "int[]", or "String" for "String[]"). @return true if this ClassNode represents an array type;
()
| 1959 | * @return {@code true} if this ClassNode represents an array type; {@code false} if it represents a scalar type |
| 1960 | */ |
| 1961 | public boolean isArray() { |
| 1962 | return (componentType != null); |
| 1963 | } |
| 1964 | |
| 1965 | /** |
| 1966 | * Returns a {@code ClassNode} representing an array of the type represented by this. |
no outgoing calls