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)In short, no
gotcha, thanks
In long, there are more tedious ways to do the equivalent by using java interop with Java method handles etc
perhaps something we'll plug at some point
cool. Found a workaround for now but the MethodHandles tip is useful