Uses of Class
org.reflections.util.ConfigurationBuilder
Packages that use ConfigurationBuilder
-
Uses of ConfigurationBuilder in org.reflections.util
Methods in org.reflections.util that return ConfigurationBuilderModifier and TypeMethodDescriptionConfigurationBuilder.addClassLoader
(ClassLoader classLoader) add class loader, might be used for resolving methods/fieldsConfigurationBuilder.addClassLoaders
(ClassLoader... classLoaders) add class loader, might be used for resolving methods/fieldsConfigurationBuilder.addClassLoaders
(Collection<ClassLoader> classLoaders) add class loader, might be used for resolving methods/fieldsConfigurationBuilder.addScanners
(Scanner... scanners) set the scanners instances for scanning different metadataadd urls to be scannedConfigurationBuilder.addUrls
(Collection<URL> urls) add urls to be scannedstatic ConfigurationBuilder
constructs aConfigurationBuilder
using the given parameters, in a non statically typed way.ConfigurationBuilder.filterInputsBy
(Predicate<String> inputsFilter) sets the input filter for all resources to be scanned.ConfigurationBuilder.forPackages
(String... packages) ConfigurationBuilder.setExecutorService
(ExecutorService executorService) sets the executor service used for scanning.ConfigurationBuilder.setExpandSuperTypes
(boolean expandSuperTypes) if set to true, Reflections will expand super types after scanning.ConfigurationBuilder.setMetadataAdapter
(MetadataAdapter metadataAdapter) sets the metadata adapter used to fetch metadata from classesConfigurationBuilder.setScanners
(Scanner... scanners) set the scanners instances for scanning different metadataConfigurationBuilder.setSerializer
(Serializer serializer) sets the serializer used when issuingReflections.save(java.lang.String)
set the urls to be scannedConfigurationBuilder.setUrls
(Collection<URL> urls) set the urls to be scannedConfigurationBuilder.useParallelExecutor()
sets the executor service used for scanning to ThreadPoolExecutor with core size asRuntime.availableProcessors()
ConfigurationBuilder.useParallelExecutor
(int availableProcessors) sets the executor service used for scanning to ThreadPoolExecutor with core size as the given availableProcessors parameter.