Interface GraalReflectionConfigurer.ReflectionConfigurationContext
- Enclosing interface:
GraalReflectionConfigurer
public static interface GraalReflectionConfigurer.ReflectionConfigurationContext
Context object for the configuration.
- Since:
- 3.5.0
- Author:
- graemerocher
-
Method Summary
Modifier and TypeMethodDescription@Nullable Class<?> findClassByName(String name) Finds a class by name.voidRegister the given types for reflection.voidregister(Constructor<?>... constructors) Register the given constructors for reflection.voidRegister the given fields for reflection.voidRegister the given methods for reflection.voidregisterDynamicProxy(Class<?> proxyClass) Register a dynamic proxy.
-
Method Details
-
findClassByName
-
register
Register the given types for reflection.- Parameters:
types- The types
-
register
Register the given methods for reflection.- Parameters:
methods- The methods
-
register
Register the given fields for reflection.- Parameters:
fields- The fields
-
register
Register the given constructors for reflection.- Parameters:
constructors- The constructors
-
registerDynamicProxy
Register a dynamic proxy.- Parameters:
proxyClass- The proxy class
-