public static interface GraalReflectionConfigurer.ReflectionConfigurationContext
| Modifier and Type | Method and Description | 
|---|---|
| Class<?> | findClassByName(String name)Finds a class by name. | 
| void | register(Class<?>... types)Register the given types for reflection. | 
| void | register(Constructor<?>... constructors)Register the given constructors for reflection. | 
| void | register(Field... fields)Register the given fields for reflection. | 
| void | register(Method... methods)Register the given methods for reflection. | 
@Nullable Class<?> findClassByName(@NonNull String name)
name - The namevoid register(Class<?>... types)
types - The typesvoid register(Method... methods)
methods - The methodsvoid register(Field... fields)
fields - The fieldsvoid register(Constructor<?>... constructors)
constructors - The constructors