public class ClosureStaticMetaMethod extends MetaMethod implements ClosureInvokingMethod
This class represents a MetaMethod that is a closure that pretends to be a static method. It is used by ExpandoMetaClass to allow addition of static methods defined as closures
| Fields inherited from class | Fields | 
|---|---|
class MetaMethod | 
                            EMPTY_ARRAY | 
                        
class ParameterTypes | 
                            isVargsMethod, nativeParamTypes, parameterTypes | 
                        
| Constructor and description | 
|---|
                                ClosureStaticMetaMethod(String name, Class declaringClass, Closure c)
  | 
                        
                                ClosureStaticMetaMethod(String name, Class declaringClass, Closure c, Class[] paramTypes) | 
                        
| Type Params | Return Type | Name and description | 
|---|---|---|
 | 
                            public Closure | 
                            getClosure()Retrieves the closure that is invoked by this MetaMethod  | 
                        
 | 
                            public CachedClass | 
                            getDeclaringClass() | 
                        
 | 
                            public int | 
                            getModifiers() | 
                        
 | 
                            public String | 
                            getName() | 
                        
 | 
                            public Class | 
                            getReturnType() | 
                        
 | 
                            public Object | 
                            invoke(Object object, Object[] arguments) | 
                        
| Methods inherited from class | Name | 
|---|---|
class MetaMethod | 
                            checkParameters, clone, doMethodInvoke, equal, equal, getDeclaringClass, getDescriptor, getModifiers, getMopName, getName, getReturnType, getSignature, invoke, isAbstract, isCacheable, isDefault, isMethod, isPrivate, isProtected, isPublic, isSame, isStatic, processDoMethodInvokeException, toString | 
                        
class ParameterTypes | 
                            coerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getPT, getParameterTypes, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypes | 
                        
name -  The name of the MetaMethoddeclaringClass -  The class which declared the MetaMethodc -  The closure that this ClosureMetaMethod will invoke when calledRetrieves the closure that is invoked by this MetaMethod
Copyright © 2003-2022 The Apache Software Foundation. All rights reserved.