Returns the Type corresponding to the given method descriptor. Equivalent to Type.getType(methodDescriptor) . @param methodDescriptor a method descriptor. @return the Type corresponding to the given method descriptor.
(final String methodDescriptor)
| 196 | * @return the {@link Type} corresponding to the given method descriptor. |
| 197 | */ |
| 198 | public static Type getMethodType(final String methodDescriptor) { |
| 199 | return new Type(METHOD, methodDescriptor, 0, methodDescriptor.length()); |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Returns the method {@link Type} corresponding to the given argument and return types. |
no test coverage detected