Does EL implementation in Flowable support methods expressions?

Does EL implementation in Flowable support methods expressions?

Let’s say

a.foo() is a method

Can it be passed as a parameter in EL?

${bean.func(a.foo)}

Thanks,
–MG

Yes that should work with a slight modification:

${bean.func(a.foo())}

Best regards,

Tijs

That wasn’t the question.
Question was can a method reference be passed as an argument?

Thanks

No you can’t do it like this.
You can of course pass a method name as a string and use Java reflection.

Best regards,

Tijs