put() — spring-boot Function Reference
Architecture documentation for the put() function in JSONObject.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f["put()"] f1a34274_9212_49ef_a9b7_b1602eb3ab03["JSONObject()"] f1a34274_9212_49ef_a9b7_b1602eb3ab03 -->|calls| 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f 827a4311_8d9e_b2ac_c026_1b8f813f6676["putOpt()"] 827a4311_8d9e_b2ac_c026_1b8f813f6676 -->|calls| 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f 2f23e2c1_a028_a35e_d894_f3f4a4eebc38["accumulate()"] 2f23e2c1_a028_a35e_d894_f3f4a4eebc38 -->|calls| 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f d893a9f1_90ef_72a8_214b_1f5138cb8af3["toJSONArray()"] d893a9f1_90ef_72a8_214b_1f5138cb8af3 -->|calls| 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f 3a026524_8261_0337_f364_a864a5252db7["parseHint()"] 3a026524_8261_0337_f364_a864a5252db7 -->|calls| 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f a70f55b3_d9b2_7ed9_a631_1c885a918f28["checkName()"] 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f -->|calls| a70f55b3_d9b2_7ed9_a631_1c885a918f28 6cba389f_6950_2408_504d_62dbd747ace5["remove()"] 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f -->|calls| 6cba389f_6950_2408_504d_62dbd747ace5 style 1bc3a0b6_6045_ed66_1f89_1c6fe5c3d27f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-metadata/src/json-shade/java/org/springframework/boot/configurationmetadata/json/JSONObject.java lines 205–208
public JSONObject put(String name, boolean value) throws JSONException {
this.nameValuePairs.put(checkName(name), value);
return this;
}
Domain
Subdomains
Calls
- checkName()
- remove()
Called By
Source
Frequently Asked Questions
What does put() do?
put() is a function in the spring-boot codebase.
What does put() call?
put() calls 2 function(s): checkName, remove.
What calls put()?
put() is called by 5 function(s): JSONObject, accumulate, parseHint, putOpt, toJSONArray.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free