Returns the Type corresponding to the given type descriptor. @param typeDescriptor a field or method type descriptor. @return the Type corresponding to the given type descriptor.
(final String typeDescriptor)
| 174 | * @return the {@link Type} corresponding to the given type descriptor. |
| 175 | */ |
| 176 | public static Type getType(final String typeDescriptor) { |
| 177 | return getType(typeDescriptor, 0, typeDescriptor.length()); |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Returns the {@link Type} corresponding to the given internal name. |
no test coverage detected