public interface ReflectionMetadataProvider
Implementations of this interface declare a collection of classes that should be registered for reflection at build time—commonly used in native image generation processes such as GraalVM.
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection<java.lang.Class<?>> |
getReflectiveClasses()
Returns a collection of classes that should be registered for reflective access.
|
java.util.Collection<java.lang.Class<?>> getReflectiveClasses()
This method does not perform any registration itself—it only declares the classes that need to be registered. The returned collection does not require a specific ordering and may contain any number of class references.