Uses of Interface
org.junit.platform.commons.io.Resource
-
Packages that use Resource Package Description org.junit.platform.commons.io IO-related interfaces and support classesorg.junit.platform.commons.support Common support APIs provided by the JUnit Platform.org.junit.platform.commons.support.scanning Classpath scanning APIs provided by the JUnit Platform.org.junit.platform.commons.util Internal common utilities for JUnit. -
-
Uses of Resource in org.junit.platform.commons.io
Methods in org.junit.platform.commons.io that return Resource Modifier and Type Method Description static ResourceResource. of(java.lang.String name, java.net.URI uri)Create a newResourcewith the given name and URI.Methods in org.junit.platform.commons.io with parameters of type Resource Modifier and Type Method Description booleanResourceFilter. match(Resource resource)Method parameters in org.junit.platform.commons.io with type arguments of type Resource Modifier and Type Method Description static ResourceFilterResourceFilter. of(java.util.function.Predicate<? super Resource> resourcePredicate)Create aResourceFilterinstance from a predicate. -
Uses of Resource in org.junit.platform.commons.support
Subinterfaces of Resource in org.junit.platform.commons.support Modifier and Type Interface Description interfaceResourceDeprecated.Please useResourceinstead.Methods in org.junit.platform.commons.support that return types with arguments of type Resource Modifier and Type Method Description static java.util.List<Resource>ResourceSupport. findAllResourcesInClasspathRoot(java.net.URI root, ResourceFilter resourceFilter)static java.util.List<Resource>ResourceSupport. findAllResourcesInModule(java.lang.String moduleName, ResourceFilter resourceFilter)static java.util.List<Resource>ResourceSupport. findAllResourcesInPackage(java.lang.String basePackageName, ResourceFilter resourceFilter)static java.util.stream.Stream<Resource>ResourceSupport. streamAllResourcesInClasspathRoot(java.net.URI root, ResourceFilter resourceFilter)static java.util.stream.Stream<Resource>ResourceSupport. streamAllResourcesInModule(java.lang.String moduleName, ResourceFilter resourceFilter)static java.util.stream.Stream<Resource>ResourceSupport. streamAllResourcesInPackage(java.lang.String basePackageName, ResourceFilter resourceFilter)static Try<java.util.Set<Resource>>ResourceSupport. tryToGetResources(java.lang.String classpathResourceName)Try to get the resources for the supplied classpath resource name.static Try<java.util.Set<Resource>>ResourceSupport. tryToGetResources(java.lang.String classpathResourceName, java.lang.ClassLoader classLoader)Try to load the resources for the supplied classpath resource name, using the suppliedClassLoader.Methods in org.junit.platform.commons.support with parameters of type Resource Modifier and Type Method Description static ResourceResource. of(Resource resource)Deprecated. -
Uses of Resource in org.junit.platform.commons.support.scanning
Methods in org.junit.platform.commons.support.scanning that return types with arguments of type Resource Modifier and Type Method Description default java.util.List<? extends Resource>ClasspathScanner. scanForResourcesInClasspathRoot(java.net.URI root, ResourceFilter resourceFilter)Find all resources in the supplied classpathrootthat match the specifiedresourceFilterpredicate.default java.util.List<? extends Resource>ClasspathScanner. scanForResourcesInPackage(java.lang.String basePackageName, ResourceFilter resourceFilter)Find all resources in the supplied classpathrootthat match the specifiedresourceFilterpredicate. -
Uses of Resource in org.junit.platform.commons.util
Methods in org.junit.platform.commons.util that return types with arguments of type Resource Modifier and Type Method Description static java.util.List<Resource>ReflectionUtils. findAllResourcesInClasspathRoot(java.net.URI root, ResourceFilter resourceFilter)static java.util.List<Resource>ModuleUtils. findAllResourcesInModule(java.lang.String moduleName, ResourceFilter filter)Find all resources for the given module name.static java.util.List<Resource>ReflectionUtils. findAllResourcesInModule(java.lang.String moduleName, ResourceFilter resourceFilter)static java.util.List<Resource>ReflectionUtils. findAllResourcesInPackage(java.lang.String basePackageName, ResourceFilter resourceFilter)static java.util.stream.Stream<Resource>ReflectionUtils. streamAllResourcesInClasspathRoot(java.net.URI root, ResourceFilter resourceFilter)static java.util.stream.Stream<Resource>ReflectionUtils. streamAllResourcesInModule(java.lang.String moduleName, ResourceFilter resourceFilter)static java.util.stream.Stream<Resource>ReflectionUtils. streamAllResourcesInPackage(java.lang.String basePackageName, ResourceFilter resourceFilter)static Try<java.util.Set<Resource>>ReflectionUtils. tryToGetResources(java.lang.String classpathResourceName)Try to get resources by their name, using theClassLoaderUtils.getDefaultClassLoader().static Try<java.util.Set<Resource>>ReflectionUtils. tryToGetResources(java.lang.String classpathResourceName, java.lang.ClassLoader classLoader)Try to get resources by their name, using the suppliedClassLoader.
-