getTypeOfField() — spring-boot Function Reference
Architecture documentation for the getTypeOfField() function in TypeUtilsTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df["getTypeOfField()"] fd85f441_97fc_d6aa_3d9b_924c3a88b3c9["resolveTypeOnConcreteClass()"] fd85f441_97fc_d6aa_3d9b_924c3a88b3c9 -->|calls| cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df 8a825865_e411_1e4f_906c_a9fb0860e427["resolveTypeOnIntermediateClass()"] 8a825865_e411_1e4f_906c_a9fb0860e427 -->|calls| cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df 26d7537a_2aef_3f50_cc99_f8820ac91190["resolveTypeWithOnlyGenerics()"] 26d7537a_2aef_3f50_cc99_f8820ac91190 -->|calls| cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df d29a7723_eae0_9b86_827d_ff28774b02fe["resolveTypeWithUnresolvedGenericProperties()"] d29a7723_eae0_9b86_827d_ff28774b02fe -->|calls| cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df 62f95bc4_2bb6_9daa_d438_9c1427a0978e["resolvedTypeMixGenericNamePropertiesProperties()"] 62f95bc4_2bb6_9daa_d438_9c1427a0978e -->|calls| cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df 52ab020f_758e_40c3_f29f_970f1f8041dd["findField()"] cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df -->|calls| 52ab020f_758e_40c3_f29f_970f1f8041dd style cd2ae2b4_a811_dc3d_06ba_cf5bdeaf54df fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/TypeUtilsTests.java lines 113–119
private String getTypeOfField(TypeUtils typeUtils, TypeElement typeElement, String name) {
TypeMirror field = findField(typeUtils, typeElement, name);
if (field == null) {
throw new IllegalStateException("Unable to find field '" + name + "' in " + typeElement);
}
return typeUtils.getType(typeElement, field);
}
Domain
Subdomains
Calls
- findField()
Called By
Source
Frequently Asked Questions
What does getTypeOfField() do?
getTypeOfField() is a function in the spring-boot codebase.
What does getTypeOfField() call?
getTypeOfField() calls 1 function(s): findField.
What calls getTypeOfField()?
getTypeOfField() is called by 5 function(s): resolveTypeOnConcreteClass, resolveTypeOnIntermediateClass, resolveTypeWithOnlyGenerics, resolveTypeWithUnresolvedGenericProperties, resolvedTypeMixGenericNamePropertiesProperties.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free