Invokes the closure with no arguments, returning any value if applicable. @return The value if applicable or null if there is no return statement in the closure.
()
| 513 | * @return The value if applicable or null if there is no return statement in the closure. |
| 514 | */ |
| 515 | @Override |
| 516 | public V call() { |
| 517 | return call(EMPTY_OBJECT_ARRAY); |
| 518 | } |
| 519 | |
| 520 | /** |
| 521 | * Invokes the closure with given argument(s), returning any value if applicable. |