Home / Function/ getJSONArray() — spring-boot Function Reference

getJSONArray() — spring-boot Function Reference

Architecture documentation for the getJSONArray() function in JSONObject.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 1 called by 4

Entity Profile

Dependency Diagram

graph TD
  f9964989_2435_c964_3cbd_13f2d152f81c["getJSONArray()"]
  0c4716f1_89d3_214b_7093_ffa56bbd0903["parseAllSources()"]
  0c4716f1_89d3_214b_7093_ffa56bbd0903 -->|calls| f9964989_2435_c964_3cbd_13f2d152f81c
  5cbde88c_fc16_4fe0_ed82_2951d88ac431["parseAllItems()"]
  5cbde88c_fc16_4fe0_ed82_2951d88ac431 -->|calls| f9964989_2435_c964_3cbd_13f2d152f81c
  fec0cb25_40b2_aedb_0b43_217278cb009d["parseAllHints()"]
  fec0cb25_40b2_aedb_0b43_217278cb009d -->|calls| f9964989_2435_c964_3cbd_13f2d152f81c
  3a026524_8261_0337_f364_a864a5252db7["parseHint()"]
  3a026524_8261_0337_f364_a864a5252db7 -->|calls| f9964989_2435_c964_3cbd_13f2d152f81c
  a50303b0_fe68_9acb_a34d_5b51d45ddbcd["get()"]
  f9964989_2435_c964_3cbd_13f2d152f81c -->|calls| a50303b0_fe68_9acb_a34d_5b51d45ddbcd
  style f9964989_2435_c964_3cbd_13f2d152f81c 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 596–604

	public JSONArray getJSONArray(String name) throws JSONException {
		Object object = get(name);
		if (object instanceof JSONArray) {
			return (JSONArray) object;
		}
		else {
			throw JSON.typeMismatch(name, object, "JSONArray");
		}
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does getJSONArray() do?
getJSONArray() is a function in the spring-boot codebase.
What does getJSONArray() call?
getJSONArray() calls 1 function(s): get.
What calls getJSONArray()?
getJSONArray() is called by 4 function(s): parseAllHints, parseAllItems, parseAllSources, parseHint.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free