Series Type — spring-boot Architecture
Architecture documentation for the Series type/interface in JsonValueWriter.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/main/java/org/springframework/boot/json/JsonValueWriter.java lines 361–382
enum Series {
/**
* A JSON object series consisting of name/value pairs.
*/
OBJECT('{', '}'),
/**
* A JSON array series consisting of elements.
*/
ARRAY('[', ']');
final char openChar;
final char closeChar;
Series(char openChar, char closeChar) {
this.openChar = openChar;
this.closeChar = closeChar;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free