Creating Java Method objects for a given MethodMember is rather expensive because it typically involves getting. The declared methods of a Class and searching for one that matches the method signature. This is most problematic when we are trying to get a Method for an array of MethodMembers, because in this case we will end up repeating the process multiple times. A JavaMethodCache instance can cache Method objects from the first time we iterate the declared methods of a class so subsequently we can just get the other methods from the cache.
@author Kris De Volder
@since 0.5.0
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.