How do you refer to primitive Java types in Clojure?
You can refer to the primitive types through the TYPE
property of their boxed equivalent. For example:
user=> (.getDeclaredMethod String "valueOf" (into-array [Boolean/TYPE]))
#<Method public static java.lang.String java.lang.String.valueOf(boolean)>