ResourceList |
ResourceList.classFilesOnly() |
Return a new ResourceList consisting of only the resources with the filename extension ".class".
|
static ResourceList |
ResourceList.emptyList() |
|
ResourceList |
ResourceList.filter(ResourceList.ResourceFilter filter) |
Find the subset of the Resource objects in this list for which the given filter predicate is true.
|
ResourceList |
ResourceList.get(String resourcePath) |
Returns a list of all resources with the requested path.
|
ResourceList |
ScanResult.getAllResources() |
Get the list of all resources.
|
ResourceList |
ScanResult.getResourcesMatchingPattern(Pattern pattern) |
Get the list of all resources found in whitelisted packages that have a path matching the requested pattern.
|
ResourceList |
ScanResult.getResourcesWithExtension(String extension) |
Get the list of all resources found in whitelisted packages that have the requested filename extension.
|
ResourceList |
ScanResult.getResourcesWithLeafName(String leafName) |
Get the list of all resources found in whitelisted packages that have the requested leafname.
|
ResourceList |
ScanResult.getResourcesWithPath(String resourcePath) |
Get the list of all resources found in whitelisted packages that have the given path, relative to the package
root of the classpath element.
|
ResourceList |
ScanResult.getResourcesWithPathIgnoringWhitelist(String resourcePath) |
Get the list of all resources found in any classpath element, whether in whitelisted packages or not (as
long as the resource is not blacklisted), that have the given path, relative to the package root of the
classpath element.
|
ResourceList |
ResourceList.nonClassFilesOnly() |
Return a new ResourceList consisting of non-classfile resources only.
|