of() — spring-boot Function Reference
Architecture documentation for the of() function in PropertyDescriptorResolver.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 8d8762ab_591a_5bae_76cf_e80ff6844cc3["of()"] 6775f042_3d09_d5e9_78c0_c47ca3fcd373["resolve()"] 6775f042_3d09_d5e9_78c0_c47ca3fcd373 -->|calls| 8d8762ab_591a_5bae_76cf_e80ff6844cc3 97f0e17f_0c59_de65_05e1_b0df6c2ac97c["getBoundConstructors()"] 8d8762ab_591a_5bae_76cf_e80ff6844cc3 -->|calls| 97f0e17f_0c59_de65_05e1_b0df6c2ac97c 6df3fbe6_b027_6b0c_cd92_e7f01eb04923["Bindable()"] 8d8762ab_591a_5bae_76cf_e80ff6844cc3 -->|calls| 6df3fbe6_b027_6b0c_cd92_e7f01eb04923 style 8d8762ab_591a_5bae_76cf_e80ff6844cc3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/PropertyDescriptorResolver.java lines 209–213
static Bindable of(TypeElement type, MetadataGenerationEnvironment env) {
List<ExecutableElement> constructors = ElementFilter.constructorsIn(type.getEnclosedElements());
List<ExecutableElement> boundConstructors = getBoundConstructors(type, env, constructors);
return new Bindable(type, constructors, boundConstructors);
}
Domain
Subdomains
Calls
- Bindable()
- getBoundConstructors()
Called By
Source
Frequently Asked Questions
What does of() do?
of() is a function in the spring-boot codebase.
What does of() call?
of() calls 2 function(s): Bindable, getBoundConstructors.
What calls of()?
of() is called by 1 function(s): resolve.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free