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 LazyList of ClassInfo objects. When compiling against
versions of Scala prior to 2.13.0, this result is really a
scala.Stream object. (There's a compatibility type definition
with the classutil library.)
A
ClassFinderfinds 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 theClassFindercompanion object.