parseAllItems() — spring-boot Function Reference
Architecture documentation for the parseAllItems() function in JsonReader.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 5cbde88c_fc16_4fe0_ed82_2951d88ac431["parseAllItems()"] 042cd95c_0b91_e683_3300_e13a43112471["read()"] 042cd95c_0b91_e683_3300_e13a43112471 -->|calls| 5cbde88c_fc16_4fe0_ed82_2951d88ac431 b5e03970_dde4_ee52_57c8_c57ee3a0271e["has()"] 5cbde88c_fc16_4fe0_ed82_2951d88ac431 -->|calls| b5e03970_dde4_ee52_57c8_c57ee3a0271e f0a7a167_d269_1fd7_866c_891752cd681d["parseItem()"] 5cbde88c_fc16_4fe0_ed82_2951d88ac431 -->|calls| f0a7a167_d269_1fd7_866c_891752cd681d f9964989_2435_c964_3cbd_13f2d152f81c["getJSONArray()"] 5cbde88c_fc16_4fe0_ed82_2951d88ac431 -->|calls| f9964989_2435_c964_3cbd_13f2d152f81c 1b3d0a68_657d_02e7_ac7c_605a667f6b93["length()"] 5cbde88c_fc16_4fe0_ed82_2951d88ac431 -->|calls| 1b3d0a68_657d_02e7_ac7c_605a667f6b93 212159c5_c7ba_d0b1_c776_3d5b2a46713f["getJSONObject()"] 5cbde88c_fc16_4fe0_ed82_2951d88ac431 -->|calls| 212159c5_c7ba_d0b1_c776_3d5b2a46713f style 5cbde88c_fc16_4fe0_ed82_2951d88ac431 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-metadata/src/main/java/org/springframework/boot/configurationmetadata/JsonReader.java lines 74–85
private List<ConfigurationMetadataItem> parseAllItems(JSONObject root) throws Exception {
List<ConfigurationMetadataItem> result = new ArrayList<>();
if (!root.has("properties")) {
return result;
}
JSONArray items = root.getJSONArray("properties");
for (int i = 0; i < items.length(); i++) {
JSONObject item = items.getJSONObject(i);
result.add(parseItem(item));
}
return result;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does parseAllItems() do?
parseAllItems() is a function in the spring-boot codebase.
What does parseAllItems() call?
parseAllItems() calls 5 function(s): getJSONArray, getJSONObject, has, length, parseItem.
What calls parseAllItems()?
parseAllItems() is called by 1 function(s): read.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free