Uses of Class
org.springframework.data.util.TypeCollector
Packages that use TypeCollector
Package
Description
Support for registering the need for reflection, resources, java serialization and proxies at runtime for Ahead of
Time compilation.
Support classes for repository namespace and JavaConfig integration.
Core utility APIs such as a type information framework to resolve generic types.
-
Uses of TypeCollector in org.springframework.data.aot
Methods in org.springframework.data.aot that return types with arguments of type TypeCollectorModifier and TypeMethodDescriptionprotected Consumer<TypeCollector> ManagedTypesBeanRegistrationAotProcessor.typeCollectorCustomizer()Customization hook to configureTypeCollector.Method parameters in org.springframework.data.aot with type arguments of type TypeCollectorModifier and TypeMethodDescriptionAotContext.AotContextBuilder.customizeTypeCollector(Consumer<TypeCollector> typeCollectorConsumer) Provide a consumer to customizeTypeCollector. -
Uses of TypeCollector in org.springframework.data.repository.config
Methods in org.springframework.data.repository.config that return types with arguments of type TypeCollectorModifier and TypeMethodDescriptionprotected Consumer<TypeCollector> RepositoryRegistrationAotProcessor.typeCollectorCustomizer()Customization hook to configureTypeCollector. -
Uses of TypeCollector in org.springframework.data.util
Methods in org.springframework.data.util that return TypeCollectorModifier and TypeMethodDescriptionstatic TypeCollectorTypeCollector.create(Consumer<TypeCollector> customizer) Create a newTypeCollectorapplyingcustomizerto configure theTypeCollector.TypeCollector.filterFields(Predicate<Field> filter) Add a filter to exclude fields from being introspected.TypeCollector.filterMethods(Predicate<Method> filter) Add a filter to exclude methods from being introspected.TypeCollector.filterTypes(Predicate<Class<?>> filter) Add a filter to exclude types from being introspected.Method parameters in org.springframework.data.util with type arguments of type TypeCollectorModifier and TypeMethodDescriptionstatic TypeCollectorTypeCollector.create(Consumer<TypeCollector> customizer) Create a newTypeCollectorapplyingcustomizerto configure theTypeCollector.static TypeCollector.ReachableTypesTypeCollector.inspect(Consumer<TypeCollector> collectorCustomizer, Class<?>... types) Inspect the given type and resolve those reachable via fields, methods, generics, ...static TypeCollector.ReachableTypesTypeCollector.inspect(Consumer<TypeCollector> collectorCustomizer, Collection<Class<?>> types) Inspect the given type and resolve those reachable via fields, methods, generics, ...