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 e00d01c8_1ae8_f530_0266_0863c164a433["nextValue()"] 222f475a_e60c_57a7_5fec_ce6fe2f5deda["readObject()"] 222f475a_e60c_57a7_5fec_ce6fe2f5deda -->|calls| e00d01c8_1ae8_f530_0266_0863c164a433 e8449afe_d093_aefb_5ba5_e395f33c931b["readArray()"] e8449afe_d093_aefb_5ba5_e395f33c931b -->|calls| e00d01c8_1ae8_f530_0266_0863c164a433 ba2b4b5f_53d3_e7ca_09c7_5b89f2ff6a13["nextCleanInternal()"] e00d01c8_1ae8_f530_0266_0863c164a433 -->|calls| ba2b4b5f_53d3_e7ca_09c7_5b89f2ff6a13 424682c6_51c3_cdab_a5b5_25e0f9a6d8eb["syntaxError()"] e00d01c8_1ae8_f530_0266_0863c164a433 -->|calls| 424682c6_51c3_cdab_a5b5_25e0f9a6d8eb 222f475a_e60c_57a7_5fec_ce6fe2f5deda["readObject()"] e00d01c8_1ae8_f530_0266_0863c164a433 -->|calls| 222f475a_e60c_57a7_5fec_ce6fe2f5deda e8449afe_d093_aefb_5ba5_e395f33c931b["readArray()"] e00d01c8_1ae8_f530_0266_0863c164a433 -->|calls| e8449afe_d093_aefb_5ba5_e395f33c931b 0e60597a_7663_531a_8d22_7804181f0d6d["nextString()"] e00d01c8_1ae8_f530_0266_0863c164a433 -->|calls| 0e60597a_7663_531a_8d22_7804181f0d6d 2111ccdc_7354_2dd2_52b2_b19e29e21757["readLiteral()"] e00d01c8_1ae8_f530_0266_0863c164a433 -->|calls| 2111ccdc_7354_2dd2_52b2_b19e29e21757 style e00d01c8_1ae8_f530_0266_0863c164a433 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/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