a sequence of directories, jars and zips to search
the version of asm to be used. Defaults to v6. To override use one of the ASM-fields in org.objectweb.asm.Opcodes. (e.g. org.objectweb.asm.Opcodes.ASM5)
Find all classes in the specified path, which can contain directories, zip files and jar files.
Find all classes in the specified path, which can contain directories,
zip files and jar files. Returns metadata about each class in a
ClassInfo
object. The ClassInfo
objects are returned lazily,
rather than loaded all up-front.
a Stream
of ClassInfo
objects
A
ClassFinder
finds classes in a class path, returning the result in a lazy iterator. The iterator can then be filtered, mapped, or passed to the utility methods in theClassFinder
companion object.