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