Class ReflectionMetaMethod
java.lang.Object
org.codehaus.groovy.reflection.ParameterTypes
groovy.lang.MetaMethod
org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
- All Implemented Interfaces:
MetaMember,Cloneable
- Direct Known Subclasses:
NewMetaMethod
-
Field Summary
FieldsFields inherited from class groovy.lang.MetaMethod
EMPTY_ARRAY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the class where this method is declared.intReturns the modifiers of this method.getName()Returns the name of this method.protected Class[]getPT()Protected method subclasses override to provide parameter types.Returns the return type for this method.Invokes this method.toString()Methods inherited from class groovy.lang.MetaMethod
checkParameters, clone, doMethodInvoke, equal, equal, getDescriptor, getMopName, getSignature, isAbstract, isCacheable, isDefault, isMethod, isSame, processDoMethodInvokeExceptionMethods inherited from class org.codehaus.groovy.reflection.ParameterTypes
coerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getParameterTypes, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypesMethods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface groovy.lang.MetaMember
isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, isSynthetic
-
Field Details
-
method
-
-
Constructor Details
-
ReflectionMetaMethod
-
-
Method Details
-
getModifiers
public int getModifiers()Description copied from class:MetaMethodReturns the modifiers of this method.- Specified by:
getModifiersin interfaceMetaMember- Specified by:
getModifiersin classMetaMethod- Returns:
- modifiers as an int.
-
getName
Description copied from class:MetaMethodReturns the name of this method.- Specified by:
getNamein interfaceMetaMember- Specified by:
getNamein classMetaMethod- Returns:
- name of this method
-
getReturnType
Description copied from class:MetaMethodReturns the return type for this method.- Specified by:
getReturnTypein classMetaMethod- Returns:
- the return type of this method
-
getDeclaringClass
Description copied from class:MetaMethodGets the class where this method is declared.- Specified by:
getDeclaringClassin classMetaMethod- Returns:
- class of this method
-
invoke
Description copied from class:MetaMethodInvokes 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
-
toString
Description copied from class:MetaMethod- Overrides:
toStringin classMetaMethod
-
getPT
Description copied from class:ParameterTypesProtected method subclasses override to provide parameter types. Default implementation throwsUnsupportedOperationException.- Overrides:
getPTin classParameterTypes- Returns:
- the native parameter class array
-
getCachedMethod
-