Class NewInstanceMetaMethod
java.lang.Object
org.codehaus.groovy.reflection.ParameterTypes
groovy.lang.MetaMethod
org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
org.codehaus.groovy.runtime.metaclass.NewMetaMethod
org.codehaus.groovy.runtime.metaclass.NewInstanceMetaMethod
- All Implemented Interfaces:
MetaMember
,Cloneable
- Direct Known Subclasses:
GroovyCategorySupport.CategoryMethod
A MetaMethod implementation where the underlying method is really a static
helper method on some class but it appears to be an instance method on a class.
This implementation is used to add new methods to the JDK writing them as normal
static methods with the first parameter being the class on which the method is added.
-
Field Summary
Fields inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethod
bytecodeParameterTypes, EMPTY_TYPE_ARRAY
Fields inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
method
Fields inherited from class groovy.lang.MetaMethod
EMPTY_ARRAY
-
Constructor Summary
-
Method Summary
Methods inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethod
getBytecodeParameterTypes, getDeclaringClass, getOwnerClass
Methods inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
getCachedMethod, getName, getPT, getReturnType, toString
Methods inherited from class groovy.lang.MetaMethod
checkParameters, clone, doMethodInvoke, equal, equal, getDescriptor, getMopName, getSignature, isAbstract, isCacheable, isDefault, isMethod, isSame, processDoMethodInvokeException
Methods inherited from class org.codehaus.groovy.reflection.ParameterTypes
coerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getParameterTypes, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypes
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface groovy.lang.MetaMember
isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isSynthetic
-
Constructor Details
-
NewInstanceMetaMethod
-
-
Method Details
-
isStatic
public boolean isStatic() -
getModifiers
public int getModifiers()Description copied from class:MetaMethod
Returns the modifiers of this method.- Specified by:
getModifiers
in interfaceMetaMember
- Overrides:
getModifiers
in classReflectionMetaMethod
- Returns:
- modifiers as an int.
-
invoke
Description copied from class:MetaMethod
Invokes this method.- Overrides:
invoke
in classReflectionMetaMethod
- Parameters:
object
- The object this method should be invoked onarguments
- The arguments for the method if applicable- Returns:
- The return value of the invocation
-