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 RunTasks calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  72c07c64_b550_5f12_73c9_c77b5ce919c2["open()"]
  96473179_546a_ca46_62a0_6b5ab5c07e64["array()"]
  96473179_546a_ca46_62a0_6b5ab5c07e64 -->|calls| 72c07c64_b550_5f12_73c9_c77b5ce919c2
  39d644be_8024_fd88_fc03_91a11601732f["object()"]
  39d644be_8024_fd88_fc03_91a11601732f -->|calls| 72c07c64_b550_5f12_73c9_c77b5ce919c2
  250890e2_bc7d_48c3_5fce_7d652e3be2b4["beforeValue()"]
  72c07c64_b550_5f12_73c9_c77b5ce919c2 -->|calls| 250890e2_bc7d_48c3_5fce_7d652e3be2b4
  style 72c07c64_b550_5f12_73c9_c77b5ce919c2 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/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