Obtain the value of the lambda argument with the given name. @param name The name of the lambda argument @return The value of the specified argument @since EL 3.0
(String name)
| 310 | * @since EL 3.0 |
| 311 | */ |
| 312 | public Object getLambdaArgument(String name) { |
| 313 | for (Map<String,Object> arguments : getLambdaArguments()) { |
| 314 | Object result = arguments.get(name); |
| 315 | if (result != null || arguments.containsKey(name)) { |
| 316 | return result; |
| 317 | } |
| 318 | } |
| 319 | return null; |
| 320 | } |
| 321 | |
| 322 | /** |
| 323 | * Called when starting to evaluate a lambda expression so that the arguments are available to the EL context during |
nothing calls this directly
no test coverage detected