Class ListSetExecutor
java.lang.Object
org.apache.commons.jexl2.internal.AbstractExecutor
org.apache.commons.jexl2.internal.AbstractExecutor.Set
org.apache.commons.jexl2.internal.ListSetExecutor
- All Implemented Interfaces:
JexlPropertySet
Specialized executor to set a property in a List or array.
- Since:
- 2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractExecutor
AbstractExecutor.Get, AbstractExecutor.Method, AbstractExecutor.Set -
Field Summary
Fields inherited from class AbstractExecutor
method, objectClass, TRY_FAILED -
Constructor Summary
ConstructorsConstructorDescriptionListSetExecutor(Introspector is, Class<?> clazz, Integer key, Object value) Creates an instance checking for the List interface or Array capability. -
Method Summary
Modifier and TypeMethodDescriptionSets the property value of an object.Gets the property targeted by this executor.tryExecute(Object obj, Object key, Object value) Tries to reuse this executor, checking that it is compatible with the actual set of arguments.Methods inherited from class AbstractExecutor.Set
invoke, tryInvokeMethods inherited from class AbstractExecutor
equals, equals, getMethod, getMethodName, getTargetClass, hashCode, isAlive, isCacheable, tryFailedMethods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface JexlPropertySet
isCacheable, tryFailed
-
Constructor Details
-
ListSetExecutor
Creates an instance checking for the List interface or Array capability.- Parameters:
is- the introspectorclazz- the class that might implement the map interfacekey- the key to use in obj.set(key,value)value- the value to use in obj.set(key,value)
-
-
Method Details
-
getTargetProperty
Gets the property targeted by this executor.- Overrides:
getTargetPropertyin classAbstractExecutor- Returns:
- the target property
-
execute
-
tryExecute
Tries to reuse this executor, checking that it is compatible with the actual set of arguments.Compatibility means that:
omust be of the same class as this executor's target class,propertymust 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) and thatargmust be a valid argument for this executor underlying method.- Overrides:
tryExecutein classAbstractExecutor.Set- Parameters:
obj- The object to invoke the method from.key- The property to set in the object.value- The value to use as the property value.- Returns:
- The return value or TRY_FAILED if checking failed.
-