java

2019-02-21T17:21:20.001800Z

Is there a way to replicate getting a java static method from clojure, ie

ClassName::staticMethodName
I'm able to get a specific method by its signature using .getMethod but I need to get all implmentations of a method name (as :: seems to allow in java)

alexmiller 2019-02-21T17:56:59.002100Z

In short, no

2019-02-21T18:00:05.002300Z

gotcha, thanks

alexmiller 2019-02-21T18:19:36.002500Z

In long, there are more tedious ways to do the equivalent by using java interop with Java method handles etc

alexmiller 2019-02-21T18:20:01.002700Z

perhaps something we'll plug at some point

2019-02-21T19:03:52.002900Z

cool. Found a workaround for now but the MethodHandles tip is useful