Interface GraalReflectionConfigurer.ReflectionConfigurationContext

Enclosing interface:
GraalReflectionConfigurer

public static interface GraalReflectionConfigurer.ReflectionConfigurationContext
Context object for the configuration.
  • Method Details

    • findClassByName

      @Nullable @Nullable Class<?> findClassByName(@NonNull @NonNull String name)
      Finds a class by name.
      Parameters:
      name - The name
      Returns:
      The class or null
    • register

      void register(Class<?>... types)
      Register the given types for reflection.
      Parameters:
      types - The types
    • register

      void register(Method... methods)
      Register the given methods for reflection.
      Parameters:
      methods - The methods
    • register

      void register(Field... fields)
      Register the given fields for reflection.
      Parameters:
      fields - The fields
    • register

      void register(Constructor<?>... constructors)
      Register the given constructors for reflection.
      Parameters:
      constructors - The constructors