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

open() — spring-boot Function Reference

Architecture documentation for the open() function in JSONStringer.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  576d3552_6245_00ed_0f1d_0b49083fbc99["open()"]
  7b544970_fee3_85f3_bb7a_91fd507c89d5["array()"]
  7b544970_fee3_85f3_bb7a_91fd507c89d5 -->|calls| 576d3552_6245_00ed_0f1d_0b49083fbc99
  d550a266_37c3_034f_07f6_a62f41c75478["object()"]
  d550a266_37c3_034f_07f6_a62f41c75478 -->|calls| 576d3552_6245_00ed_0f1d_0b49083fbc99
  d1b30bcd_285c_293e_1e7e_4dea1cefb8c1["beforeValue()"]
  576d3552_6245_00ed_0f1d_0b49083fbc99 -->|calls| d1b30bcd_285c_293e_1e7e_4dea1cefb8c1
  style 576d3552_6245_00ed_0f1d_0b49083fbc99 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

cli/spring-boot-cli/src/json-shade/java/org/springframework/boot/cli/json/JSONStringer.java lines 175–183

	JSONStringer open(Scope empty, String openBracket) throws JSONException {
		if (this.stack.isEmpty() && !this.out.isEmpty()) {
			throw new JSONException("Nesting problem: multiple top-level roots");
		}
		beforeValue();
		this.stack.add(empty);
		this.out.append(openBracket);
		return this;
	}

Domain

Subdomains

Called By

  • array()
  • object()

Frequently Asked Questions

What does open() do?
open() is a function in the spring-boot codebase.
What does open() call?
open() calls 1 function(s): beforeValue.
What calls open()?
open() is called by 2 function(s): array, object.

Analyze Your Own Codebase

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

Try Supermodel Free