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 a50303b0_fe68_9acb_a34d_5b51d45ddbcd["get()"] 2f23e2c1_a028_a35e_d894_f3f4a4eebc38["accumulate()"] 2f23e2c1_a028_a35e_d894_f3f4a4eebc38 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd 0b1995b0_a3b2_4690_dae6_81d2ed0916b6["isNull()"] 0b1995b0_a3b2_4690_dae6_81d2ed0916b6 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd 3f311302_743c_0448_919e_30cb3dc18736["opt()"] 3f311302_743c_0448_919e_30cb3dc18736 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd 8b1a7147_7e01_cd9c_72e4_b2d4892acbc7["getBoolean()"] 8b1a7147_7e01_cd9c_72e4_b2d4892acbc7 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd 6113dc02_ef83_1896_4fba_2eb03e655c1a["getDouble()"] 6113dc02_ef83_1896_4fba_2eb03e655c1a -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd fabfdedf_223f_c6a3_f344_0797542aa4d0["getInt()"] fabfdedf_223f_c6a3_f344_0797542aa4d0 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd 55ed8a6b_12a7_72bb_73b9_4547ca8c8125["getLong()"] 55ed8a6b_12a7_72bb_73b9_4547ca8c8125 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd 444d149e_1c4f_8942_92f4_1d92b6f99bc7["getString()"] 444d149e_1c4f_8942_92f4_1d92b6f99bc7 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd f9964989_2435_c964_3cbd_13f2d152f81c["getJSONArray()"] f9964989_2435_c964_3cbd_13f2d152f81c -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd bffd4896_fc0a_d9f8_6b96_8fff51fb82d7["getJSONObject()"] bffd4896_fc0a_d9f8_6b96_8fff51fb82d7 -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd style a50303b0_fe68_9acb_a34d_5b51d45ddbcd 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 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