Returns the type of the elements of this array type. This method should only be used for an array type. @return Returns the type of the elements of this array type.
()
| 479 | * @return Returns the type of the elements of this array type. |
| 480 | */ |
| 481 | public Type getElementType() { |
| 482 | final int numDimensions = getDimensions(); |
| 483 | return getType(valueBuffer, valueBegin + numDimensions, valueEnd); |
| 484 | } |
| 485 | |
| 486 | /** |
| 487 | * Returns the binary name of the class corresponding to this type. This method must not be used |
no test coverage detected