isAccessLevelPublic() — spring-boot Function Reference
Architecture documentation for the isAccessLevelPublic() function in LombokPropertyDescriptor.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 01b7334f_5363_ab1f_f29e_35a30914f7cf["isAccessLevelPublic()"] 5368ebed_a9bf_3268_4582_b2e73b1e7cea["hasLombokPublicAccessor()"] 5368ebed_a9bf_3268_4582_b2e73b1e7cea -->|calls| 01b7334f_5363_ab1f_f29e_35a30914f7cf 1baabe57_48a3_d81d_65fc_4f3335b91796["toString()"] 01b7334f_5363_ab1f_f29e_35a30914f7cf -->|calls| 1baabe57_48a3_d81d_65fc_4f3335b91796 6ba62623_7f72_4fbe_a844_3fc78ffb241c["equals()"] 01b7334f_5363_ab1f_f29e_35a30914f7cf -->|calls| 6ba62623_7f72_4fbe_a844_3fc78ffb241c style 01b7334f_5363_ab1f_f29e_35a30914f7cf fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/LombokPropertyDescriptor.java lines 128–132
private boolean isAccessLevelPublic(MetadataGenerationEnvironment env, AnnotationMirror lombokAnnotation) {
Map<String, Object> values = env.getAnnotationElementValues(lombokAnnotation);
Object value = values.get("value");
return (value == null || value.toString().equals(LOMBOK_ACCESS_LEVEL_PUBLIC));
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does isAccessLevelPublic() do?
isAccessLevelPublic() is a function in the spring-boot codebase.
What does isAccessLevelPublic() call?
isAccessLevelPublic() calls 2 function(s): equals, toString.
What calls isAccessLevelPublic()?
isAccessLevelPublic() is called by 1 function(s): hasLombokPublicAccessor.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free