nextToInternal() — spring-boot Function Reference
Architecture documentation for the nextToInternal() function in JSONTokener.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 9cbd13f0_7e91_22bb_092a_99b7c304c684["nextToInternal()"] 8089b70b_21e3_f7e1_7641_cc4fd9b7bd5a["readLiteral()"] 8089b70b_21e3_f7e1_7641_cc4fd9b7bd5a -->|calls| 9cbd13f0_7e91_22bb_092a_99b7c304c684 ebbcba79_71fa_401a_3a79_51174cad9d7b["nextTo()"] ebbcba79_71fa_401a_3a79_51174cad9d7b -->|calls| 9cbd13f0_7e91_22bb_092a_99b7c304c684 style 9cbd13f0_7e91_22bb_092a_99b7c304c684 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 337–346
private String nextToInternal(String excluded) {
int start = this.pos;
for (; this.pos < this.in.length(); this.pos++) {
char c = this.in.charAt(this.pos);
if (c == '\r' || c == '\n' || excluded.indexOf(c) != -1) {
return this.in.substring(start, this.pos);
}
}
return this.in.substring(start);
}
Domain
Subdomains
Called By
- nextTo()
- readLiteral()
Source
Frequently Asked Questions
What does nextToInternal() do?
nextToInternal() is a function in the spring-boot codebase.
What calls nextToInternal()?
nextToInternal() is called by 2 function(s): nextTo, readLiteral.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free