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 SummaryFields inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethodbytecodeParameterTypes, EMPTY_TYPE_ARRAYFields inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethodmethodFields inherited from class groovy.lang.MetaMethodEMPTY_ARRAY
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class org.codehaus.groovy.runtime.metaclass.NewMetaMethodgetBytecodeParameterTypes, getDeclaringClass, getOwnerClassMethods inherited from class org.codehaus.groovy.runtime.metaclass.ReflectionMetaMethodgetCachedMethod, getName, getPT, getReturnType, toStringMethods inherited from class groovy.lang.MetaMethodcheckParameters, clone, doMethodInvoke, equal, equal, getDescriptor, getMopName, getSignature, isAbstract, isCacheable, isDefault, isMethod, isSame, processDoMethodInvokeExceptionMethods inherited from class org.codehaus.groovy.reflection.ParameterTypescoerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getParameterTypes, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypesMethods inherited from class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface groovy.lang.MetaMemberisFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isSynthetic
- 
Constructor Details- 
NewStaticMetaMethod
 
- 
- 
Method Details- 
isStaticpublic boolean isStatic()
- 
getModifierspublic int getModifiers()Description copied from class:MetaMethodReturns the modifiers of this method.- Specified by:
- getModifiersin interface- MetaMember
- Overrides:
- getModifiersin class- ReflectionMetaMethod
- Returns:
- modifiers as an int.
 
- 
invokeDescription copied from class:MetaMethodInvokes this method.- Overrides:
- invokein class- ReflectionMetaMethod
- Parameters:
- object- The object this method should be invoked on
- arguments- The arguments for the method if applicable
- Returns:
- The return value of the invocation
 
 
-