Class NewStaticMetaMethod
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.NewStaticMetaMethod
- All Implemented Interfaces:
MetaMember,Cloneable
A MetaMethod implementation where the underlying method is really a static
helper method on some class.
This implementation is used to add new static 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_ARRAYFields inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
methodFields inherited from class groovy.lang.MetaMethod
EMPTY_ARRAY -
Constructor Summary
ConstructorsConstructorDescriptionNewStaticMetaMethod(CachedMethod method) Constructs a new NewStaticMetaMethod. -
Method Summary
Methods inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethod
getBytecodeParameterTypes, getDeclaringClass, getOwnerClassMethods inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethod
getCachedMethod, getName, getPT, getReturnType, toStringMethods 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, isSynthetic
-
Constructor Details
-
NewStaticMetaMethod
Constructs a new NewStaticMetaMethod.- Parameters:
method- the cached static method
-
-
Method Details
-
isStatic
public boolean isStatic()Indicates this method is static.- Returns:
- true, as this wraps a static method
-
getModifiers
public int getModifiers()Returns the modifiers for this method (PUBLIC | STATIC).- Specified by:
getModifiersin interfaceMetaMember- Overrides:
getModifiersin classReflectionMetaMethod- Returns:
- PUBLIC and STATIC modifiers
-
invoke
Invokes the underlying static method with null as the first argument. This adapts static method calls to the underlying static method signature.- Overrides:
invokein classReflectionMetaMethod- Parameters:
object- the object (ignored for static methods)arguments- the method arguments- Returns:
- the method return value
-