nextValue() — spring-boot Function Reference
Architecture documentation for the nextValue() function in JSONTokener.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 87e46e8d_3da0_7f48_7371_9287ac91a438["nextValue()"] 893d015b_6dbc_f3e6_7bc9_d3ea1284a481["readObject()"] 893d015b_6dbc_f3e6_7bc9_d3ea1284a481 -->|calls| 87e46e8d_3da0_7f48_7371_9287ac91a438 da568135_bed6_f988_5f6f_c09ed51fd977["readArray()"] da568135_bed6_f988_5f6f_c09ed51fd977 -->|calls| 87e46e8d_3da0_7f48_7371_9287ac91a438 8fab3eb9_87b1_0170_dc8c_7fff92dfe65b["nextCleanInternal()"] 87e46e8d_3da0_7f48_7371_9287ac91a438 -->|calls| 8fab3eb9_87b1_0170_dc8c_7fff92dfe65b 2ea9368b_02eb_2d26_b6e7_aaf2153de2a0["syntaxError()"] 87e46e8d_3da0_7f48_7371_9287ac91a438 -->|calls| 2ea9368b_02eb_2d26_b6e7_aaf2153de2a0 893d015b_6dbc_f3e6_7bc9_d3ea1284a481["readObject()"] 87e46e8d_3da0_7f48_7371_9287ac91a438 -->|calls| 893d015b_6dbc_f3e6_7bc9_d3ea1284a481 da568135_bed6_f988_5f6f_c09ed51fd977["readArray()"] 87e46e8d_3da0_7f48_7371_9287ac91a438 -->|calls| da568135_bed6_f988_5f6f_c09ed51fd977 66b15724_450e_758d_e9ff_8fb2f09212ec["nextString()"] 87e46e8d_3da0_7f48_7371_9287ac91a438 -->|calls| 66b15724_450e_758d_e9ff_8fb2f09212ec f4a17d8d_2d55_e198_454a_fcedac6674b9["readLiteral()"] 87e46e8d_3da0_7f48_7371_9287ac91a438 -->|calls| f4a17d8d_2d55_e198_454a_fcedac6674b9 style 87e46e8d_3da0_7f48_7371_9287ac91a438 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/JSONTokener.java lines 91–110
public Object nextValue() throws JSONException {
int c = nextCleanInternal();
switch (c) {
case -1:
throw syntaxError("End of input");
case '{':
return readObject();
case '[':
return readArray();
case '\'', '"':
return nextString((char) c);
default:
this.pos--;
return readLiteral();
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does nextValue() do?
nextValue() is a function in the spring-boot codebase.
What does nextValue() call?
nextValue() calls 6 function(s): nextCleanInternal, nextString, readArray, readLiteral, readObject, syntaxError.
What calls nextValue()?
nextValue() is called by 2 function(s): readArray, readObject.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free