Class MethodInfo
- java.lang.Object
-
- org.camunda.bpm.engine.impl.javax.el.MethodInfo
-
public class MethodInfo extends java.lang.Object
Holds information about a method that aMethodExpression
evaluated to.
-
-
Constructor Summary
Constructors Constructor Description MethodInfo(java.lang.String name, java.lang.Class<?> returnType, java.lang.Class<?>[] paramTypes)
Creates a new instance of MethodInfo with the given information.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of the methodjava.lang.Class<?>[]
getParamTypes()
Returns the parameter types of the methodjava.lang.Class<?>
getReturnType()
Returns the return type of the method
-
-
-
Constructor Detail
-
MethodInfo
public MethodInfo(java.lang.String name, java.lang.Class<?> returnType, java.lang.Class<?>[] paramTypes)
Creates a new instance of MethodInfo with the given information.- Parameters:
name
- The name of the methodreturnType
- The return type of the methodparamTypes
- The types of each of the method's parameters
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of the method- Returns:
- the name of the method
-
getParamTypes
public java.lang.Class<?>[] getParamTypes()
Returns the parameter types of the method- Returns:
- the parameter types of the method
-
getReturnType
public java.lang.Class<?> getReturnType()
Returns the return type of the method- Returns:
- the return type of the method
-
-