Package org.codehaus.groovy.reflection
Class CachedMethod
- java.lang.Object
 - 
- org.codehaus.groovy.reflection.ParameterTypes
 - 
- groovy.lang.MetaMethod
 - 
- org.codehaus.groovy.reflection.CachedMethod
 
 
 
 
- 
- All Implemented Interfaces:
 Cloneable,Comparable
public class CachedMethod extends MetaMethod implements Comparable
 
- 
- 
Field Summary
Fields Modifier and Type Field Description CachedClasscachedClassstatic CachedMethod[]EMPTY_ARRAY- 
Fields inherited from class org.codehaus.groovy.reflection.ParameterTypes
isVargsMethod, nativeParamTypes, parameterTypes 
 - 
 
- 
Constructor Summary
Constructors Constructor Description CachedMethod(Method method)CachedMethod(CachedClass clazz, Method method) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanAccessLegally(Class<?> callerClass)intcompareTo(Object o)CallSitecreatePogoMetaMethodSite(CallSite site, MetaClassImpl metaClass, Class[] params)CallSitecreatePojoMetaMethodSite(CallSite site, MetaClassImpl metaClass, Class[] params)CallSitecreateStaticMetaMethodSite(CallSite site, MetaClassImpl metaClass, Class[] params)booleanequals(Object o)static CachedMethodfind(Method method)<T extends Annotation>
TgetAnnotation(Class<T> annotationClass)MethodgetCachedMethod()CachedClassgetDeclaringClass()Gets the class where this method is declaredStringgetDescriptor()Return a descriptor of this method based on the return type and parameters of this method.intgetModifiers()Returns the modifiers for this methodStringgetName()Returns the name of the method represented by this classintgetParamsCount()ParameterTypesgetParamTypes()Class[]getPT()ClassgetReturnType()Access the return type for this methodStringgetSignature()Returns the signature of this methodCachedMethodgetTransformedMethod()inthashCode()Objectinvoke(Object object, Object[] arguments)Invoke this methodbooleanisStatic()Returns whether or not this method is static.booleanisSynthetic()MethodsetAccessible()voidsetTransformedMethod(CachedMethod transformedMethod)StringtoString()Returns a string representation of this method- 
Methods inherited from class groovy.lang.MetaMethod
checkParameters, clone, doMethodInvoke, equal, equal, getMopName, isAbstract, isCacheable, isMethod, isPrivate, isProtected, isPublic, isSame, processDoMethodInvokeException 
- 
Methods inherited from class org.codehaus.groovy.reflection.ParameterTypes
coerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getParameterTypes, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypes 
 - 
 
 - 
 
- 
- 
Field Detail
- 
EMPTY_ARRAY
public static final CachedMethod[] EMPTY_ARRAY
 
- 
cachedClass
public final CachedClass cachedClass
 
 - 
 
- 
Constructor Detail
- 
CachedMethod
public CachedMethod(CachedClass clazz, Method method)
 
- 
CachedMethod
public CachedMethod(Method method)
 
 - 
 
- 
Method Detail
- 
find
public static CachedMethod find(Method method)
 
- 
getPT
public Class[] getPT()
- Overrides:
 getPTin classParameterTypes
 
- 
getName
public String getName()
Description copied from class:MetaMethodReturns the name of the method represented by this class- Specified by:
 getNamein classMetaMethod- Returns:
 - name of this method
 
 
- 
getDescriptor
public String getDescriptor()
Description copied from class:MetaMethodReturn a descriptor of this method based on the return type and parameters of this method.- Overrides:
 getDescriptorin classMetaMethod
 
- 
getDeclaringClass
public CachedClass getDeclaringClass()
Description copied from class:MetaMethodGets the class where this method is declared- Specified by:
 getDeclaringClassin classMetaMethod- Returns:
 - class of this method
 
 
- 
invoke
public final Object invoke(Object object, Object[] arguments)
Description copied from class:MetaMethodInvoke this method- Specified by:
 invokein classMetaMethod- Parameters:
 object- The object this method should be invoked onarguments- The arguments for the method if applicable- Returns:
 - The return value of the invocation
 
 
- 
getParamTypes
public ParameterTypes getParamTypes()
 
- 
getReturnType
public Class getReturnType()
Description copied from class:MetaMethodAccess the return type for this method- Specified by:
 getReturnTypein classMetaMethod- Returns:
 - the return type of this method
 
 
- 
getParamsCount
public int getParamsCount()
 
- 
getModifiers
public int getModifiers()
Description copied from class:MetaMethodReturns the modifiers for this method- Specified by:
 getModifiersin classMetaMethod- Returns:
 - modifiers as an int.
 
 
- 
getSignature
public String getSignature()
Description copied from class:MetaMethodReturns the signature of this method- Overrides:
 getSignaturein classMetaMethod- Returns:
 - The signature of this method
 
 
- 
setAccessible
public final Method setAccessible()
 
- 
isStatic
public boolean isStatic()
Description copied from class:MetaMethodReturns whether or not this method is static.- Overrides:
 isStaticin classMetaMethod- Returns:
 - true if this method is static
 
 
- 
getTransformedMethod
public CachedMethod getTransformedMethod()
 
- 
setTransformedMethod
public void setTransformedMethod(CachedMethod transformedMethod)
 
- 
compareTo
public int compareTo(Object o)
- Specified by:
 compareToin interfaceComparable
 
- 
toString
public String toString()
Description copied from class:MetaMethodReturns a string representation of this method- Overrides:
 toStringin classMetaMethod
 
- 
createPogoMetaMethodSite
public CallSite createPogoMetaMethodSite(CallSite site, MetaClassImpl metaClass, Class[] params)
 
- 
createPojoMetaMethodSite
public CallSite createPojoMetaMethodSite(CallSite site, MetaClassImpl metaClass, Class[] params)
 
- 
createStaticMetaMethodSite
public CallSite createStaticMetaMethodSite(CallSite site, MetaClassImpl metaClass, Class[] params)
 
- 
getAnnotation
public <T extends Annotation> T getAnnotation(Class<T> annotationClass)
 
- 
isSynthetic
public boolean isSynthetic()
 
- 
getCachedMethod
public Method getCachedMethod()
 
- 
canAccessLegally
public boolean canAccessLegally(Class<?> callerClass)
 
 - 
 
 -