getCount() — spring-boot Function Reference
Architecture documentation for the getCount() function in ConfigurationPropertySourcesPropertyResolverTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD b2e77f3e_609c_d14d_2a57_ef9c62e983d0["getCount()"] 3a6b6587_7247_a588_1ef7_36ae2e6d1017["standardPropertyResolverResolvesMultipleTimes()"] 3a6b6587_7247_a588_1ef7_36ae2e6d1017 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 50a29df5_9fd6_6bdd_7422_a3b17fa263a1["configurationPropertySourcesPropertyResolverResolvesSingleTime()"] 50a29df5_9fd6_6bdd_7422_a3b17fa263a1 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 4e06d171_e489_508f_bfdc_c0b5c77d5a26["containsPropertyWhenValidConfigurationPropertyName()"] 4e06d171_e489_508f_bfdc_c0b5c77d5a26 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 174199de_6b5f_ef01_1e4b_06d7c42327a2["containsPropertyWhenNotValidConfigurationPropertyName()"] 174199de_6b5f_ef01_1e4b_06d7c42327a2 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 5adf3627_6875_45dd_7fa4_57e500acd3c4["getPropertyWhenValidConfigurationPropertyName()"] 5adf3627_6875_45dd_7fa4_57e500acd3c4 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 991f9f4e_2784_ea2e_7b8d_eee13508c2d6["getPropertyWhenNotValidConfigurationPropertyName()"] 991f9f4e_2784_ea2e_7b8d_eee13508c2d6 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 dc5cf04b_34b8_79ce_0c3c_15dbda7f7b38["getPropertyWhenNotAttached()"] dc5cf04b_34b8_79ce_0c3c_15dbda7f7b38 -->|calls| b2e77f3e_609c_d14d_2a57_ef9c62e983d0 style b2e77f3e_609c_d14d_2a57_ef9c62e983d0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/properties/source/ConfigurationPropertySourcesPropertyResolverTests.java lines 184–187
int getCount(String name) {
AtomicInteger count = this.counts.get(name);
return (count != null) ? count.get() : 0;
}
Domain
Subdomains
Called By
- configurationPropertySourcesPropertyResolverResolvesSingleTime()
- containsPropertyWhenNotValidConfigurationPropertyName()
- containsPropertyWhenValidConfigurationPropertyName()
- getPropertyWhenNotAttached()
- getPropertyWhenNotValidConfigurationPropertyName()
- getPropertyWhenValidConfigurationPropertyName()
- standardPropertyResolverResolvesMultipleTimes()
Source
Frequently Asked Questions
What does getCount() do?
getCount() is a function in the spring-boot codebase.
What calls getCount()?
getCount() is called by 7 function(s): configurationPropertySourcesPropertyResolverResolvesSingleTime, containsPropertyWhenNotValidConfigurationPropertyName, containsPropertyWhenValidConfigurationPropertyName, getPropertyWhenNotAttached, getPropertyWhenNotValidConfigurationPropertyName, getPropertyWhenValidConfigurationPropertyName, standardPropertyResolverResolvesMultipleTimes.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free