Returns the Type corresponding to the given internal name. @param internalName an internal name. @return the Type corresponding to the given internal name.
(final String internalName)
| 184 | * @return the {@link Type} corresponding to the given internal name. |
| 185 | */ |
| 186 | public static Type getObjectType(final String internalName) { |
| 187 | return new Type( |
| 188 | internalName.charAt(0) == '[' ? ARRAY : INTERNAL, internalName, 0, internalName.length()); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Returns the {@link Type} corresponding to the given method descriptor. Equivalent to <code> |
no test coverage detected