registerHintsWhenWhenHasNestedExternalType() — spring-boot Function Reference
Architecture documentation for the registerHintsWhenWhenHasNestedExternalType() function in BindableRuntimeHintsRegistrarTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c01b7cb0_248c_c75e_ecd4_c00ef7c69a61["registerHintsWhenWhenHasNestedExternalType()"] 1f1ab86f_6320_aed2_3ca4_203719d9ba15["registerHints()"] c01b7cb0_248c_c75e_ecd4_c00ef7c69a61 -->|calls| 1f1ab86f_6320_aed2_3ca4_203719d9ba15 1f8e6adf_e431_e24d_79c7_c3d95086b426["javaBeanBinding()"] c01b7cb0_248c_c75e_ecd4_c00ef7c69a61 -->|calls| 1f8e6adf_e431_e24d_79c7_c3d95086b426 d928a4e8_396e_d08a_20f7_3906e35731d6["methods()"] c01b7cb0_248c_c75e_ecd4_c00ef7c69a61 -->|calls| d928a4e8_396e_d08a_20f7_3906e35731d6 8877eda3_7439_8480_81c8_9b4176687435["fields()"] c01b7cb0_248c_c75e_ecd4_c00ef7c69a61 -->|calls| 8877eda3_7439_8480_81c8_9b4176687435 style c01b7cb0_248c_c75e_ecd4_c00ef7c69a61 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/BindableRuntimeHintsRegistrarTests.java lines 178–187
@Test
void registerHintsWhenWhenHasNestedExternalType() {
RuntimeHints runtimeHints = registerHints(WithExternalNested.class);
assertThat(runtimeHints.reflection().typeHints()).hasSize(3)
.anySatisfy(javaBeanBinding(WithExternalNested.class)
.methods("getName", "setName", "getSampleType", "setSampleType")
.fields("name", "sampleType"))
.anySatisfy(javaBeanBinding(SampleType.class).methods("getNested").fields("nested"))
.anySatisfy(javaBeanBinding(SampleType.Nested.class));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does registerHintsWhenWhenHasNestedExternalType() do?
registerHintsWhenWhenHasNestedExternalType() is a function in the spring-boot codebase.
What does registerHintsWhenWhenHasNestedExternalType() call?
registerHintsWhenWhenHasNestedExternalType() calls 4 function(s): fields, javaBeanBinding, methods, registerHints.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free