Returns the internal name of the class corresponding to this object or array type. The internal name of a class is its fully qualified name (as returned by Class.getName(), where '.' are replaced by '/'). This method should only be used for an object or array type. @return the internal name of the
()
| 531 | * @return the internal name of the class corresponding to this object type. |
| 532 | */ |
| 533 | public String getInternalName() { |
| 534 | return valueBuffer.substring(valueBegin, valueEnd); |
| 535 | } |
| 536 | |
| 537 | /** |
| 538 | * Returns the argument types of methods of this type. This method should only be used for method |
no test coverage detected