open() — spring-boot Function Reference
Architecture documentation for the open() function in JSONStringer.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD de7048ce_0db6_c87d_cbd5_2885dd68542a["open()"] 9999bee9_7c90_8d33_0376_83e14878ddc5["array()"] 9999bee9_7c90_8d33_0376_83e14878ddc5 -->|calls| de7048ce_0db6_c87d_cbd5_2885dd68542a 6329d69e_433e_1b08_357d_d3778d1642bb["object()"] 6329d69e_433e_1b08_357d_d3778d1642bb -->|calls| de7048ce_0db6_c87d_cbd5_2885dd68542a b634357f_6f8f_41d5_45a5_c5d3343bd58d["beforeValue()"] de7048ce_0db6_c87d_cbd5_2885dd68542a -->|calls| b634357f_6f8f_41d5_45a5_c5d3343bd58d style de7048ce_0db6_c87d_cbd5_2885dd68542a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/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
Calls
Called By
- array()
- object()
Source
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