org.apache.commons.jexl2.internal
Class MapGetExecutor
java.lang.Object
org.apache.commons.jexl2.internal.AbstractExecutor
org.apache.commons.jexl2.internal.AbstractExecutor.Get
org.apache.commons.jexl2.internal.MapGetExecutor
- All Implemented Interfaces:
- JexlPropertyGet
public final class MapGetExecutor
- extends AbstractExecutor.Get
Specialized executor to get a property from a Map.
- Since:
- 2.0
MapGetExecutor
public MapGetExecutor(Introspector is,
Class<?> clazz,
Object key)
- Creates an instance checking for the Map interface.
- Parameters:
is
- the introspectorclazz
- the class that might implement the map interfacekey
- the key to use in map.get(key)
getTargetProperty
public Object getTargetProperty()
- Gets the property targeted by this executor.
- Overrides:
getTargetProperty
in class AbstractExecutor
- Returns:
- the target property
execute
public Object execute(Object obj)
- Get the property from the map.
- Specified by:
execute
in class AbstractExecutor.Get
- Parameters:
obj
- the map.
- Returns:
- map.get(property)
tryExecute
public Object tryExecute(Object obj,
Object key)
- 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:
obj
- The object to get the property from.key
- The property to get from the object.
- Returns:
- The property value or TRY_FAILED if checking failed.
Copyright © 2001-2011 The Apache Software Foundation. All Rights Reserved.