Uses of Class
org.springframework.aot.hint.FieldHint.Builder
Packages that use FieldHint.Builder
Package
Description
Support for registering the need for reflection, resources, java
serialization and proxies at runtime.
-
Uses of FieldHint.Builder in org.springframework.aot.hint
Methods in org.springframework.aot.hint that return FieldHint.BuilderModifier and TypeMethodDescriptionFieldHint.Builder.allowUnsafeAccess
(boolean allowUnsafeAccess) Specify if usingUnsafe
on the field should be allowed.FieldHint.Builder.allowWrite
(boolean allowWrite) Specify if setting the value of the field should be allowed.Method parameters in org.springframework.aot.hint with type arguments of type FieldHint.BuilderModifier and TypeMethodDescriptionReflectionHints.registerField
(Field field, Consumer<FieldHint.Builder> fieldHint) Register the need for reflection on the specifiedField
.TypeHint.Builder.withField
(String name, Consumer<FieldHint.Builder> fieldHint) Register the need for reflection on the field with the specified name.