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 23d19be6_c283_52f7_8076_c235fe5e7e22["get()"] f474c5e0_56fa_a01c_d587_ca845da3b64e["accumulate()"] f474c5e0_56fa_a01c_d587_ca845da3b64e -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 a617103f_d04a_1aab_bf77_6ae394214781["isNull()"] a617103f_d04a_1aab_bf77_6ae394214781 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 9b48d642_1484_2fc4_4698_b4b6309c2e72["opt()"] 9b48d642_1484_2fc4_4698_b4b6309c2e72 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 f0090f08_48b6_c344_66d1_f1a057e57edc["getBoolean()"] f0090f08_48b6_c344_66d1_f1a057e57edc -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 c0d0a9fa_af06_55ad_d701_372221d163bb["getDouble()"] c0d0a9fa_af06_55ad_d701_372221d163bb -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 861c7965_7185_dec9_b033_f4dbf5d6fc43["getInt()"] 861c7965_7185_dec9_b033_f4dbf5d6fc43 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 af26c5ac_7c63_7ac6_5bdb_aee6c02f75be["getLong()"] af26c5ac_7c63_7ac6_5bdb_aee6c02f75be -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 5f0b7260_2ffb_2128_1491_90aaaa4c2740["getString()"] 5f0b7260_2ffb_2128_1491_90aaaa4c2740 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 6e420626_9c66_5f20_7665_83a5a7322d32["getJSONArray()"] 6e420626_9c66_5f20_7665_83a5a7322d32 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 4bdb2748_fe80_c219_616e_09f60d4cd8dd["getJSONObject()"] 4bdb2748_fe80_c219_616e_09f60d4cd8dd -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 2c17e8eb_0496_ff39_6501_da982d337910["parseTypes()"] 2c17e8eb_0496_ff39_6501_da982d337910 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 7bf492b0_5c29_790f_bb79_98b6c23c4e95["getDependency()"] 7bf492b0_5c29_790f_bb79_98b6c23c4e95 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 bd71820c_0a35_8004_8d6f_ced0a8e0c403["getDefaultType()"] bd71820c_0a35_8004_8d6f_ced0a8e0c403 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 4584dba3_8260_1b92_9bbc_aac4c3d25176["parseDefaults()"] 4584dba3_8260_1b92_9bbc_aac4c3d25176 -->|calls| 23d19be6_c283_52f7_8076_c235fe5e7e22 style 23d19be6_c283_52f7_8076_c235fe5e7e22 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
cli/spring-boot-cli/src/json-shade/java/org/springframework/boot/cli/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()
- getDefaultType()
- getDependency()
- getDouble()
- getInt()
- getJSONArray()
- getJSONObject()
- getLong()
- getString()
- isNull()
- opt()
- parseDefaults()
- parseStringItems()
- parseTypes()
Source
Frequently Asked Questions
What does get() do?
get() is a function in the spring-boot codebase.
What calls get()?
get() is called by 15 function(s): accumulate, getBoolean, getDefaultType, getDependency, getDouble, getInt, getJSONArray, getJSONObject, and 7 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free