Package | Description |
---|---|
com.massa.util.classloader |
Modifier and Type | Method and Description |
---|---|
static Set<Resource> |
ResourceLoader.getAllJarResources(String pathToUse,
Pattern p,
boolean searchSubDirectories,
String jarPath)
Given a Jar from the classpath, parses all entries to retrieve those which correspond to provided criteria.
|
static Set<Resource> |
ResourceLoader.getAllJarResources(String pathToUse,
Pattern p,
boolean searchSubDirectories,
URL jarUrl)
Given a Jar from the classpath, parses all entries to retrieve those which correspond to provided criteria.
|
static Set<Resource> |
ResourceLoader.getAllJarResources(String pathToUse,
String regex,
boolean searchSubDirectories,
String jarPath)
Given a Jar from the classpath, parses all entries to retrieve those which correspond to provided criteria.
|
static Set<Resource> |
ResourceLoader.getAllJarResources(String pathToUse,
String regex,
boolean searchSubDirectories,
URL jarUrl)
Given a Jar from the classpath, parses all entries to retrieve those which correspond to provided criteria.
|
static Collection<Resource> |
ResourceLoader.getMatchingResources(String packageName,
String regex)
Parses all classpath resources to locate ones in the provided path which names match the provided
regex.
|
static Collection<Resource> |
ResourceLoader.getMatchingResources(String packageName,
String regex,
boolean searchSubDirectories)
Parses all classpath resources to locate ones in the provided path which names match the provided
regex.
|
static Collection<Resource> |
ResourceLoader.getMatchingResources(String packageName,
String regex,
boolean searchSubDirectories,
ClassLoader loader)
Parses all classpath resources to locate ones in the provided path which names match the provided
regex.
|
static Collection<Resource> |
ResourceLoader.getMatchingResources(String packageName,
String regex,
ClassLoader loader)
Parses all classpath resources to locate ones in the provided path which names match the provided
regex.
|