determineQualifiedName() — spring-boot Function Reference
Architecture documentation for the determineQualifiedName() function in TypeUtils.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD b80edf1d_56d0_c745_ef78_83ccc8cd88a3["determineQualifiedName()"] da0dfc64_2f07_14a2_101c_ff827b795c85["visitDeclared()"] da0dfc64_2f07_14a2_101c_ff827b795c85 -->|calls| b80edf1d_56d0_c745_ef78_83ccc8cd88a3 72b8e2e5_8024_2c27_43ec_48063cecdcab["asElement()"] b80edf1d_56d0_c745_ef78_83ccc8cd88a3 -->|calls| 72b8e2e5_8024_2c27_43ec_48063cecdcab a7058b93_955c_3eb2_0b44_79f88433423c["getQualifiedName()"] b80edf1d_56d0_c745_ef78_83ccc8cd88a3 -->|calls| a7058b93_955c_3eb2_0b44_79f88433423c style b80edf1d_56d0_c745_ef78_83ccc8cd88a3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java lines 315–320
private String determineQualifiedName(DeclaredType type, TypeElement enclosingElement) {
if (enclosingElement != null) {
return getQualifiedName(enclosingElement) + "$" + type.asElement().getSimpleName();
}
return getQualifiedName(type.asElement());
}
Domain
Subdomains
Called By
- visitDeclared()
Source
Frequently Asked Questions
What does determineQualifiedName() do?
determineQualifiedName() is a function in the spring-boot codebase.
What does determineQualifiedName() call?
determineQualifiedName() calls 2 function(s): asElement, getQualifiedName.
What calls determineQualifiedName()?
determineQualifiedName() is called by 1 function(s): visitDeclared.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free