Class NumberNumberMultiply
- java.lang.Object
-
- org.codehaus.groovy.reflection.ParameterTypes
-
- groovy.lang.MetaMethod
-
- org.codehaus.groovy.runtime.callsite.CallSiteAwareMetaMethod
-
- org.codehaus.groovy.runtime.dgmimpl.NumberNumberMetaMethod
-
- org.codehaus.groovy.runtime.dgmimpl.NumberNumberMultiply
-
- All Implemented Interfaces:
java.lang.Cloneable
public final class NumberNumberMultiply extends NumberNumberMetaMethod
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.codehaus.groovy.runtime.dgmimpl.NumberNumberMetaMethod
NumberNumberMetaMethod.NumberNumberCallSite
-
-
Field Summary
-
Fields inherited from class org.codehaus.groovy.reflection.ParameterTypes
isVargsMethod, nativeParamTypes, parameterTypes
-
-
Constructor Summary
Constructors Constructor Description NumberNumberMultiply()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CallSite
createPojoCallSite(CallSite site, MetaClassImpl metaClass, MetaMethod metaMethod, java.lang.Class[] params, java.lang.Object receiver, java.lang.Object[] args)
java.lang.String
getName()
Returns the name of the method represented by this classjava.lang.Object
invoke(java.lang.Object object, java.lang.Object[] arguments)
Invoke this methodstatic java.lang.Number
multiply(java.lang.Number left, java.lang.Number right)
Multiply two Numbers.-
Methods inherited from class org.codehaus.groovy.runtime.dgmimpl.NumberNumberMetaMethod
getDeclaringClass, getModifiers, getReturnType
-
Methods inherited from class groovy.lang.MetaMethod
checkParameters, clone, doMethodInvoke, equal, equal, getDescriptor, getMopName, getSignature, isAbstract, isCacheable, isMethod, isPrivate, isProtected, isPublic, isSame, isStatic, processDoMethodInvokeException, toString
-
Methods inherited from class org.codehaus.groovy.reflection.ParameterTypes
coerceArgumentsToClasses, correctArguments, getNativeParameterTypes, getParameterTypes, getPT, isValidExactMethod, isValidExactMethod, isValidMethod, isValidMethod, isVargsMethod, isVargsMethod, setParametersTypes
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from class:MetaMethod
Returns the name of the method represented by this class- Specified by:
getName
in classMetaMethod
- Returns:
- name of this method
-
invoke
public java.lang.Object invoke(java.lang.Object object, java.lang.Object[] arguments)
Description copied from class:MetaMethod
Invoke this method- Specified by:
invoke
in 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
-
multiply
public static java.lang.Number multiply(java.lang.Number left, java.lang.Number right)
Multiply two Numbers.- Parameters:
left
- a Numberright
- another Number- Returns:
- the multiplication of both
-
createPojoCallSite
public CallSite createPojoCallSite(CallSite site, MetaClassImpl metaClass, MetaMethod metaMethod, java.lang.Class[] params, java.lang.Object receiver, java.lang.Object[] args)
- Specified by:
createPojoCallSite
in classCallSiteAwareMetaMethod
-
-