java 2019-02-21

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)

Alex Miller (Clojure team) 2019-02-21T17:56:59.002100Z

In short, no

Alex Miller (Clojure team) 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

Alex Miller (Clojure team) 2019-02-21T18:20:01.002700Z

perhaps something we'll plug at some point

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