@Service public class MethodInfoCache extends Object implements Iterable<Map.Entry<MethodInfoCache.Key,MethodInfo>>
| Modifier and Type | Class and Description |
|---|---|
static class |
MethodInfoCache.Key |
| Constructor and Description |
|---|
MethodInfoCache() |
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
MethodInfo |
get(String beanName,
String methodName)
Get a method from the MethodCache.
|
Iterator<Map.Entry<MethodInfoCache.Key,MethodInfo>> |
iterator() |
void |
put(String beanName,
Class<?> clazz,
Method method,
org.springframework.context.ApplicationContext context)
Put a method into the MethodCache.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitforEach, spliteratorpublic void put(String beanName, Class<?> clazz, Method method, org.springframework.context.ApplicationContext context)
beanName - the name of the beanclazz - the class of the beanmethod - the methodcontext - the Spring application contextpublic MethodInfo get(String beanName, String methodName)
beanName - the name of the beanmethodName - the name of the methodpublic Iterator<Map.Entry<MethodInfoCache.Key,MethodInfo>> iterator()
iterator in interface Iterable<Map.Entry<MethodInfoCache.Key,MethodInfo>>public void clear()
Copyright © 2010–2017. All rights reserved.