shouldBeMerged() — spring-boot Function Reference
Architecture documentation for the shouldBeMerged() function in MetadataCollectors.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD e3cf511c_21be_5d92_a878_4a7b7e7ab661["shouldBeMerged()"] 91772c88_8487_b65b_7842_fb8961e64bd0["getSourceType()"] e3cf511c_21be_5d92_a878_4a7b7e7ab661 -->|calls| 91772c88_8487_b65b_7842_fb8961e64bd0 786f6580_40c3_f025_3128_015a471640a0["deletedInCurrentBuild()"] e3cf511c_21be_5d92_a878_4a7b7e7ab661 -->|calls| 786f6580_40c3_f025_3128_015a471640a0 3a4990f2_3bd4_6dd2_8d62_f4dacbd79c7c["processedInCurrentBuild()"] e3cf511c_21be_5d92_a878_4a7b7e7ab661 -->|calls| 3a4990f2_3bd4_6dd2_8d62_f4dacbd79c7c style e3cf511c_21be_5d92_a878_4a7b7e7ab661 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/MetadataCollectors.java lines 80–83
private boolean shouldBeMerged(ItemMetadata itemMetadata) {
String sourceType = itemMetadata.getSourceType();
return (sourceType != null && !deletedInCurrentBuild(sourceType) && !processedInCurrentBuild(sourceType));
}
Domain
Subdomains
Calls
- deletedInCurrentBuild()
- getSourceType()
- processedInCurrentBuild()
Source
Frequently Asked Questions
What does shouldBeMerged() do?
shouldBeMerged() is a function in the spring-boot codebase.
What does shouldBeMerged() call?
shouldBeMerged() calls 3 function(s): deletedInCurrentBuild, getSourceType, processedInCurrentBuild.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free