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 fe8b986e_5db0_a193_a005_7b747d465d34["nextToInternal()"] f4a17d8d_2d55_e198_454a_fcedac6674b9["readLiteral()"] f4a17d8d_2d55_e198_454a_fcedac6674b9 -->|calls| fe8b986e_5db0_a193_a005_7b747d465d34 66a0ff07_6489_cfac_9abe_7f003f517db7["nextTo()"] 66a0ff07_6489_cfac_9abe_7f003f517db7 -->|calls| fe8b986e_5db0_a193_a005_7b747d465d34 style fe8b986e_5db0_a193_a005_7b747d465d34 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 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