@MustBeClosed static fun find(glob: String): Stream<URL>
(source)
Resolve resources using the default class loader.
glob
- The glob pattern for matching resource paths against.
IOException
- If an I/O error occurs.
Return
A stream of URLs to all resources.
@MustBeClosed static fun find(@Nullable classLoader: ClassLoader?, glob: String): Stream<URL>
(source)
Resolve resources using the default class loader.
classLoader
- The class loader to use for resolving resources.
glob
- The glob pattern for matching resource paths against.
IOException
- If an I/O error occurs.
Return
A stream of URLs to all resources.