I\'m a few days into learning Clojure and are having some teething problems, so I\'m asking for advice.
I\'m trying to store a Java class in a Clojure var and call i
You are successfully storing the class in jmod, but isPrivate is a static method of java.lang.reflect.Modifier, not of java.lang.Class.
You could do this with reflection:
(. (. jmod getMethod "isPrivate" (into-array [Integer/TYPE])) invoke nil (into-array [1]))