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 9d280377_39f9_945d_4b0c_8be3562c4bd5["nextValue()"] bfecd7ed_4ec2_1eca_3ac0_a644aa4d808b["readObject()"] bfecd7ed_4ec2_1eca_3ac0_a644aa4d808b -->|calls| 9d280377_39f9_945d_4b0c_8be3562c4bd5 0ed2fa59_d163_c92c_e366_27997083938e["readArray()"] 0ed2fa59_d163_c92c_e366_27997083938e -->|calls| 9d280377_39f9_945d_4b0c_8be3562c4bd5 4a327d15_c9d7_fbe1_89b7_43cf755708ae["nextCleanInternal()"] 9d280377_39f9_945d_4b0c_8be3562c4bd5 -->|calls| 4a327d15_c9d7_fbe1_89b7_43cf755708ae 5d37c1ba_6649_7ef7_7cb2_9bcac45ebb3e["syntaxError()"] 9d280377_39f9_945d_4b0c_8be3562c4bd5 -->|calls| 5d37c1ba_6649_7ef7_7cb2_9bcac45ebb3e bfecd7ed_4ec2_1eca_3ac0_a644aa4d808b["readObject()"] 9d280377_39f9_945d_4b0c_8be3562c4bd5 -->|calls| bfecd7ed_4ec2_1eca_3ac0_a644aa4d808b 0ed2fa59_d163_c92c_e366_27997083938e["readArray()"] 9d280377_39f9_945d_4b0c_8be3562c4bd5 -->|calls| 0ed2fa59_d163_c92c_e366_27997083938e a35df52e_f777_54bb_0b5d_4e438a30aff6["nextString()"] 9d280377_39f9_945d_4b0c_8be3562c4bd5 -->|calls| a35df52e_f777_54bb_0b5d_4e438a30aff6 8089b70b_21e3_f7e1_7641_cc4fd9b7bd5a["readLiteral()"] 9d280377_39f9_945d_4b0c_8be3562c4bd5 -->|calls| 8089b70b_21e3_f7e1_7641_cc4fd9b7bd5a style 9d280377_39f9_945d_4b0c_8be3562c4bd5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
cli/spring-boot-cli/src/json-shade/java/org/springframework/boot/cli/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