org.apache.commons.jexl2.internal
Class PropertyGetExecutor
java.lang.Object
org.apache.commons.jexl2.internal.AbstractExecutor
org.apache.commons.jexl2.internal.AbstractExecutor.Get
org.apache.commons.jexl2.internal.PropertyGetExecutor
- All Implemented Interfaces:
- JexlPropertyGet
public final class PropertyGetExecutor
- extends AbstractExecutor.Get
Specialized executor to get a property from an object.
- Since:
- 2.0
Constructor Summary |
PropertyGetExecutor(Introspector is,
java.lang.Class<?> clazz,
java.lang.String identifier)
Creates an instance by attempting discovery of the get method. |
Method Summary |
java.lang.Object |
execute(java.lang.Object o)
Gets the property value from an object. |
java.lang.Object |
getTargetProperty()
Gets the property targeted by this executor. |
java.lang.Object |
tryExecute(java.lang.Object o,
java.lang.Object identifier)
Tries to reuse this executor, checking that it is compatible with
the actual set of arguments. |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
PropertyGetExecutor
public PropertyGetExecutor(Introspector is,
java.lang.Class<?> clazz,
java.lang.String identifier)
- Creates an instance by attempting discovery of the get method.
- Parameters:
is
- the introspectorclazz
- the class to introspectidentifier
- the property to get
getTargetProperty
public java.lang.Object getTargetProperty()
- Gets the property targeted by this executor.
- Overrides:
getTargetProperty
in class AbstractExecutor
- Returns:
- the target property
execute
public java.lang.Object execute(java.lang.Object o)
throws java.lang.IllegalAccessException,
java.lang.reflect.InvocationTargetException
- Gets the property value from an object.
- Specified by:
execute
in class AbstractExecutor.Get
- Parameters:
o
- The object to get the property from.
- Returns:
- The property value.
- Throws:
java.lang.IllegalAccessException
- Method is inaccessible.
java.lang.reflect.InvocationTargetException
- Method body throws an exception.
tryExecute
public java.lang.Object tryExecute(java.lang.Object o,
java.lang.Object identifier)
- Tries to reuse this executor, checking that it is compatible with
the actual set of arguments.
Compatibility means that:
o
must be of the same class as this executor's
target class and
property
must be of the same class as this
executor's target property (for list and map based executors) and have the same
value (for other types).
- Overrides:
tryExecute
in class AbstractExecutor.Get
- Parameters:
o
- The object to get the property from.identifier
- The property to get from the object.
- Returns:
- The property value or TRY_FAILED if checking failed.
Copyright © 2001-2011 Apache Software Foundation. All Rights Reserved.