readEscaped() — spring-boot Function Reference
Architecture documentation for the readEscaped() function in OriginTrackedPropertiesLoader.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a2c1fbda_79c0_ebc4_ffbd_d799ab51b3f8["readEscaped()"] 9bd4aa4c_c96d_d7cf_c80a_7ccb5d80c0ab["read()"] 9bd4aa4c_c96d_d7cf_c80a_7ccb5d80c0ab -->|calls| a2c1fbda_79c0_ebc4_ffbd_d799ab51b3f8 9bd4aa4c_c96d_d7cf_c80a_7ccb5d80c0ab["read()"] a2c1fbda_79c0_ebc4_ffbd_d799ab51b3f8 -->|calls| 9bd4aa4c_c96d_d7cf_c80a_7ccb5d80c0ab 7e096487_e163_286e_9d90_a5b68f0ff469["charAt()"] a2c1fbda_79c0_ebc4_ffbd_d799ab51b3f8 -->|calls| 7e096487_e163_286e_9d90_a5b68f0ff469 3235170b_2048_3433_46c1_552770540fda["readUnicode()"] a2c1fbda_79c0_ebc4_ffbd_d799ab51b3f8 -->|calls| 3235170b_2048_3433_46c1_552770540fda style a2c1fbda_79c0_ebc4_ffbd_d799ab51b3f8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/env/OriginTrackedPropertiesLoader.java lines 254–267
private void readEscaped() throws IOException {
this.character = this.reader.read();
int escapeIndex = ESCAPES[0].indexOf(this.character);
if (escapeIndex != -1) {
this.character = ESCAPES[1].charAt(escapeIndex);
}
else if (this.character == '\n') {
this.columnNumber = -1;
read();
}
else if (this.character == 'u') {
readUnicode();
}
}
Domain
Subdomains
Calls
- charAt()
- read()
- readUnicode()
Called By
Source
Frequently Asked Questions
What does readEscaped() do?
readEscaped() is a function in the spring-boot codebase.
What does readEscaped() call?
readEscaped() calls 3 function(s): charAt, read, readUnicode.
What calls readEscaped()?
readEscaped() is called by 1 function(s): read.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free