getAnnotationElementValues() — spring-boot Function Reference
Architecture documentation for the getAnnotationElementValues() function in MetadataGenerationEnvironment.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c1296662_b920_0869_16ea_85334d275c59["getAnnotationElementValues()"] 1baabe57_48a3_d81d_65fc_4f3335b91796["toString()"] c1296662_b920_0869_16ea_85334d275c59 -->|calls| 1baabe57_48a3_d81d_65fc_4f3335b91796 46888de3_e4cd_49f3_c5e9_23302dde6199["getAnnotationValue()"] c1296662_b920_0869_16ea_85334d275c59 -->|calls| 46888de3_e4cd_49f3_c5e9_23302dde6199 style c1296662_b920_0869_16ea_85334d275c59 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/MetadataGenerationEnvironment.java lines 312–317
Map<String, Object> getAnnotationElementValues(AnnotationMirror annotation) {
Map<String, Object> values = new LinkedHashMap<>();
annotation.getElementValues()
.forEach((name, value) -> values.put(name.getSimpleName().toString(), getAnnotationValue(value)));
return values;
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getAnnotationElementValues() do?
getAnnotationElementValues() is a function in the spring-boot codebase.
What does getAnnotationElementValues() call?
getAnnotationElementValues() calls 2 function(s): getAnnotationValue, toString.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free