public class ClassFinderFactory extends Object
| Constructor and Description |
|---|
ClassFinderFactory() |
| Modifier and Type | Method and Description |
|---|---|
static <T> ClassFinder<T> |
create(String basePackage,
BetterReflectionClass<?> packageClass)
Creates a ClassFinder object based on the given base package and package class.
|
static <T> ClassFinder<T> |
create(String basePackage,
BetterReflectionClass<?> packageClass,
BetterReflectionClass<T> type)
Creates a ClassFinder object based on the given base package and package class.
|
static <T> ClassFinder<T> |
create(String basePackage,
BetterReflectionClass<?> packageClass,
Class<T> type)
Creates a ClassFinder object based on the given base package and package class.
|
public static <T> ClassFinder<T> create(String basePackage, BetterReflectionClass<?> packageClass, BetterReflectionClass<T> type)
T - the type of class to findbasePackage - the base package for scanning classespackageClass - a class contained within the package to determine whether it's in a JAR filetype - the type of class to findpublic static <T> ClassFinder<T> create(String basePackage, BetterReflectionClass<?> packageClass)
T - the type of class to findbasePackage - the base package for scanning classespackageClass - a class contained within the package to determine whether it's in a JAR filepublic static <T> ClassFinder<T> create(String basePackage, BetterReflectionClass<?> packageClass, Class<T> type)
T - the type of class to findbasePackage - the base package for scanning classespackageClass - a class contained within the package to determine whether it's in a JAR filetype - the type of class to findCopyright © 2024. All rights reserved.