buildSimpleToString() — spring-boot Function Reference
Architecture documentation for the buildSimpleToString() function in ConfigurationPropertyName.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 53880a7e_9440_e65c_1748_ec0028e14c0e["buildSimpleToString()"] 1d3b014c_e498_a01f_8121_d6615527e8f9["asSystemEnvironmentLegacyName()"] 1d3b014c_e498_a01f_8121_d6615527e8f9 -->|calls| 53880a7e_9440_e65c_1748_ec0028e14c0e cdbf1eb7_920c_20fb_1609_cacf6bcae1e5["buildToString()"] cdbf1eb7_920c_20fb_1609_cacf6bcae1e5 -->|calls| 53880a7e_9440_e65c_1748_ec0028e14c0e 5acc70e6_66e3_8996_e541_fcd335154b61["getNumberOfElements()"] 53880a7e_9440_e65c_1748_ec0028e14c0e -->|calls| 5acc70e6_66e3_8996_e541_fcd335154b61 723faf45_147b_9b0f_f957_9de88f8cbb17["isEmpty()"] 53880a7e_9440_e65c_1748_ec0028e14c0e -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 0fc42192_9b0a_a3da_b92c_873e4b869194["toString()"] 53880a7e_9440_e65c_1748_ec0028e14c0e -->|calls| 0fc42192_9b0a_a3da_b92c_873e4b869194 7abf93ba_3935_11c5_2c16_72f1719f101e["append()"] 53880a7e_9440_e65c_1748_ec0028e14c0e -->|calls| 7abf93ba_3935_11c5_2c16_72f1719f101e style 53880a7e_9440_e65c_1748_ec0028e14c0e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java lines 596–605
private String buildSimpleToString(char joinChar, IntFunction<String> elementConverter) {
StringBuilder result = new StringBuilder();
for (int i = 0; i < getNumberOfElements(); i++) {
if (!result.isEmpty()) {
result.append(joinChar);
}
result.append(elementConverter.apply(i));
}
return result.toString();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does buildSimpleToString() do?
buildSimpleToString() is a function in the spring-boot codebase.
What does buildSimpleToString() call?
buildSimpleToString() calls 4 function(s): append, getNumberOfElements, isEmpty, toString.
What calls buildSimpleToString()?
buildSimpleToString() is called by 2 function(s): asSystemEnvironmentLegacyName, buildToString.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free