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 ed41e77b_e98c_09b8_6212_c2782cdb2cf6["nextToInternal()"] 2111ccdc_7354_2dd2_52b2_b19e29e21757["readLiteral()"] 2111ccdc_7354_2dd2_52b2_b19e29e21757 -->|calls| ed41e77b_e98c_09b8_6212_c2782cdb2cf6 88b37dc6_af5a_4e53_23c2_57b40ae0e552["nextTo()"] 88b37dc6_af5a_4e53_23c2_57b40ae0e552 -->|calls| ed41e77b_e98c_09b8_6212_c2782cdb2cf6 style ed41e77b_e98c_09b8_6212_c2782cdb2cf6 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 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