Uses of Class
org.springframework.aot.hint.ExecutableHint.Builder
Packages that use ExecutableHint.Builder
Package
Description
Support for registering the need for reflection, resources, java
serialization and proxies at runtime.
-
Uses of ExecutableHint.Builder in org.springframework.aot.hint
Methods in org.springframework.aot.hint that return ExecutableHint.BuilderModifier and TypeMethodDescriptionstatic ExecutableHint.BuilderExecutableHint.ofConstructor(List<TypeReference> parameterTypes) Initialize a builder with the parameter types of a constructor.static ExecutableHint.BuilderExecutableHint.ofMethod(String name, List<TypeReference> parameterTypes) Initialize a builder with the name and parameters types of a method.ExecutableHint.Builder.setModes(ExecutableMode... modes) Set the modes to use.ExecutableHint.Builder.withMode(ExecutableMode mode) Add the specified mode if necessary.Method parameters in org.springframework.aot.hint with type arguments of type ExecutableHint.BuilderModifier and TypeMethodDescriptionReflectionHints.registerConstructor(Constructor<?> constructor, Consumer<ExecutableHint.Builder> constructorHint) Register the need for reflection on the specifiedConstructor.ReflectionHints.registerMethod(Method method, Consumer<ExecutableHint.Builder> methodHint) Register the need for reflection on the specifiedMethod.TypeHint.Builder.withConstructor(List<TypeReference> parameterTypes, Consumer<ExecutableHint.Builder> constructorHint) Register the need for reflection on the constructor with the specified parameter types.TypeHint.Builder.withMethod(String name, List<TypeReference> parameterTypes, Consumer<ExecutableHint.Builder> methodHint) Register the need for reflection on the method with the specified name and parameter types.