Is it possible to know whether a Java class has been loaded, without attempting to load it? Class.forName attempts to load the class, but I don't want this side effect. Is there another way?
(I don't want to override the class loader. I'm looking for a relatively simple method.)