Name
type — Returns the type named by a certain string
Description
type
returns the type named by a string.
For reference types, the complete name of the class should be included in the string.
For array types, add [] to the end of the string for each array dimension.
Examples:
type "void"
type "int[]"
type "java.util.Vector"