Searched refs:typedescriptor (Results 1 – 1 of 1) sorted by relevance
178 public static Class descriptorToType (String typedescriptor) throws ClassNotFoundException in descriptorToType() argument180 return new typeDescriptorCompiler ().descriptorToClass (typedescriptor); in descriptorToType()333 public static String typeDescriptorToUserName (final String typedescriptor) in typeDescriptorToUserName() argument335 return new typeDescriptorCompiler2 ().descriptorToClass (typedescriptor); in typeDescriptorToUserName()495 Class descriptorToClass (String typedescriptor) throws ClassNotFoundException in descriptorToClass() argument497 char first = typedescriptor.charAt (0); in descriptorToClass()501 return arrayOf (typedescriptor.substring (1)); in descriptorToClass()504 …return Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1))… in descriptorToClass()512 Class arrayOf (String typedescriptor) throws ClassNotFoundException in arrayOf() argument514 char first = typedescriptor.charAt (0); in arrayOf()[all …]