I need to pass .class for a Java interface to a function call in Clojure.
Calling (class ) requires an instance of the object, where as I want the static class name.
Basically so I can java interop and use: keysetHandle.getPrimitive(Aead.class);
Passing Aead but Aead is only an interface want it like so but cannot work out how to get the equivalent Aead.class in Clojure?
(.getPrimitive keyset-handle Aead.class)