You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but I can't generate a lambda method reference from this JInvocation, since I can't construct a new JLambdaMethodRef(jInvocation, "apply") nor I can generate a lambda reference with any JInvocation method, e.g. jInvocation.ref("apply") generates .apply instead of ::apply.
The text was updated successfully, but these errors were encountered:
I need to generate this field signature:
I can easily generate the
this.andThen(Person::getFirstName)
part with:but I can't generate a lambda method reference from this
JInvocation
, since I can't construct anew JLambdaMethodRef(jInvocation, "apply")
nor I can generate a lambda reference with anyJInvocation
method, e.g.jInvocation.ref("apply")
generates.apply
instead of::apply
.The text was updated successfully, but these errors were encountered: