| java.lang.Object org.apache.harmony.lang.reflect.support.AuxiliaryFinder
AuxiliaryFinder | final public class AuxiliaryFinder (Code) | | Finder provides kinds of finding.
|
Method Summary | |
public static Class | findGenericClassDeclarationForParameterizedType(InterimParameterizedType fldType, Object startPoint) This method returns the generic class declaration which a parameterized type is derived from.
Parameters: fldType - a parsered information produced from a parameterized type signature. Parameters: startPoint - an instance of the Class, Method, Constructor or Field type to start the searchof a type variable declaration place. | public static GenericDeclaration | findGenericDeclarationForTypeVariable(String typeVariableName, Object startPoint) This method returns generic declaration where a type variable is defined in.
Parameters: typeVariableName - a name of a type variable. Parameters: startPoint - an instance of the Class, Method, Constructor or Field type to start the searchof a type variable declaration place. | public static TypeVariable | findTypeVariable(String typeVariableName, Object startPoint) This method returns TypeVariable corresponding to the name of type variable in the current scope.
Parameters: typeVariableName - a name of a type variable. Parameters: startPoint - an instance of the Class, Method, Constructor or Field type to start the searchof a type variable declaration place. | public static String | transform(String ini) This method transforms String with Utf8 to String without Utf8. |
findGenericClassDeclarationForParameterizedType | public static Class findGenericClassDeclarationForParameterizedType(InterimParameterizedType fldType, Object startPoint) throws ClassNotFoundException(Code) | | This method returns the generic class declaration which a parameterized type is derived from.
Parameters: fldType - a parsered information produced from a parameterized type signature. Parameters: startPoint - an instance of the Class, Method, Constructor or Field type to start the searchof a type variable declaration place. the found generic declaration for this type variable definition or null if a generic declaration for this type variable does not exist at all. |
findGenericDeclarationForTypeVariable | public static GenericDeclaration findGenericDeclarationForTypeVariable(String typeVariableName, Object startPoint)(Code) | | This method returns generic declaration where a type variable is defined in.
Parameters: typeVariableName - a name of a type variable. Parameters: startPoint - an instance of the Class, Method, Constructor or Field type to start the searchof a type variable declaration place. the found generic declaration for this type variable definition or null if a generic declaration for this type variable does not exist at all. |
findTypeVariable | public static TypeVariable findTypeVariable(String typeVariableName, Object startPoint)(Code) | | This method returns TypeVariable corresponding to the name of type variable in the current scope.
Parameters: typeVariableName - a name of a type variable. Parameters: startPoint - an instance of the Class, Method, Constructor or Field type to start the searchof a type variable declaration place. the found type variable. |
transform | public static String transform(String ini)(Code) | | This method transforms String with Utf8 to String without Utf8.
the transformed string. |
|
|