|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.jexl2.internal.AbstractExecutor org.apache.commons.jexl2.internal.AbstractExecutor.Method
public abstract static class AbstractExecutor.Method
Abstract class that is used to execute an arbitrary method.
Nested Class Summary | |
---|---|
protected static class |
AbstractExecutor.Method.Parameter
A helper class to pass the method & parameters. |
Nested classes/interfaces inherited from class org.apache.commons.jexl2.internal.AbstractExecutor |
---|
AbstractExecutor.Get, AbstractExecutor.Method, AbstractExecutor.Set |
Field Summary | |
---|---|
protected MethodKey |
key
The method key discovered from the arguments. |
Fields inherited from class org.apache.commons.jexl2.internal.AbstractExecutor |
---|
method, objectClass, TRY_FAILED |
Constructor Summary | |
---|---|
protected |
AbstractExecutor.Method(Class<?> c,
AbstractExecutor.Method.Parameter km)
Creates a new instance. |
Method Summary | |
---|---|
abstract Object |
execute(Object obj,
Object[] args)
Invokes the method to be executed. |
Class<?> |
getReturnType()
Returns the return type of the method invoked. |
Object |
getTargetProperty()
Gets the property targeted by this executor. |
Object |
invoke(Object obj,
Object[] params)
Invocation method, called when the method invocation should be performed and a value returned. |
Object |
tryExecute(String name,
Object obj,
Object[] args)
Tries to reuse this executor, checking that it is compatible with the actual set of arguments. |
Object |
tryInvoke(String name,
Object obj,
Object[] params)
Attempts to reuse this JexlMethod, checking that it is compatible with the actual set of arguments. |
Methods inherited from class org.apache.commons.jexl2.internal.AbstractExecutor |
---|
equals, equals, getMethod, getMethodName, getTargetClass, hashCode, isAlive, isCacheable, tryFailed |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.apache.commons.jexl2.introspection.JexlMethod |
---|
isCacheable, tryFailed |
Field Detail |
---|
protected final MethodKey key
Constructor Detail |
---|
protected AbstractExecutor.Method(Class<?> c, AbstractExecutor.Method.Parameter km)
c
- the class this executor applies tokm
- the method and MethodKey to encapsulate.Method Detail |
---|
public final Object invoke(Object obj, Object[] params) throws Exception
invoke
in interface JexlMethod
obj
- the objectparams
- method parameters.
Exception
- on any error.public final Object tryInvoke(String name, Object obj, Object[] params)
tryInvoke
in interface JexlMethod
name
- the method nameobj
- the object to invoke the method uponparams
- the method arguments
public Object getTargetProperty()
getTargetProperty
in class AbstractExecutor
public final Class<?> getReturnType()
getReturnType
in interface JexlMethod
public abstract Object execute(Object obj, Object[] args) throws IllegalAccessException, InvocationTargetException
obj
- the object to invoke the method uponargs
- the method arguments
IllegalAccessException
- Method is inaccessible.
InvocationTargetException
- Method body throws an exception.public Object tryExecute(String name, Object obj, Object[] args)
obj
- the object to invoke the method uponname
- the method nameargs
- the method arguments
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |