get() — spring-boot Function Reference
Architecture documentation for the get() function in JSONObject.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9["get()"] bea0ed01_a781_156d_ffc2_7b888e7bf015["accumulate()"] bea0ed01_a781_156d_ffc2_7b888e7bf015 -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 f26deba5_4534_21f4_e7df_a2d2684b557b["isNull()"] f26deba5_4534_21f4_e7df_a2d2684b557b -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 95f4b38d_c00e_563b_67a0_1ac9214df77c["opt()"] 95f4b38d_c00e_563b_67a0_1ac9214df77c -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 a61bb225_bc4e_ccb2_c530_9f0c9bfde984["getBoolean()"] a61bb225_bc4e_ccb2_c530_9f0c9bfde984 -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 315c56f1_7be1_2933_2fe9_969f88003f7d["getDouble()"] 315c56f1_7be1_2933_2fe9_969f88003f7d -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 8f862dad_2f9c_f207_2e95_28a84f364eb5["getInt()"] 8f862dad_2f9c_f207_2e95_28a84f364eb5 -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 587b3a10_3a6f_967e_ce01_1623a9b7b212["getLong()"] 587b3a10_3a6f_967e_ce01_1623a9b7b212 -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 3d8a5356_fa95_533b_a051_95b4dfabf7c2["getString()"] 3d8a5356_fa95_533b_a051_95b4dfabf7c2 -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 dd4660f6_898b_0da6_5c6c_303e20aa7697["getJSONArray()"] dd4660f6_898b_0da6_5c6c_303e20aa7697 -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 0b74e790_40cd_316c_e0a3_c9369a75a47c["getJSONObject()"] 0b74e790_40cd_316c_e0a3_c9369a75a47c -->|calls| 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 style 796bebf7_64ba_cc0c_f6dc_6e51f56f0bc9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/json/JSONObject.java lines 370–376
public Object get(String name) throws JSONException {
Object result = this.nameValuePairs.get(name);
if (result == null) {
throw new JSONException("No value for " + name);
}
return result;
}
Domain
Subdomains
Called By
- accumulate()
- getBoolean()
- getDouble()
- getInt()
- getJSONArray()
- getJSONObject()
- getLong()
- getString()
- isNull()
- opt()
Source
Frequently Asked Questions
What does get() do?
get() is a function in the spring-boot codebase.
What calls get()?
get() is called by 10 function(s): accumulate, getBoolean, getDouble, getInt, getJSONArray, getJSONObject, getLong, getString, and 2 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free