Returns the Java type corresponding to the given type descriptor. @param typeDescriptor a type descriptor. @return the Java type corresponding to the given type descriptor.
(final String typeDescriptor)
| 238 | */ |
| 239 | |
| 240 | public static Type getType (final String typeDescriptor) { |
| 241 | return getType(typeDescriptor.toCharArray(), 0); |
| 242 | } |
| 243 | |
| 244 | /** |
| 245 | * Returns the Java type corresponding to the given class. |
no test coverage detected