getInvalidChars() — spring-boot Function Reference
Architecture documentation for the getInvalidChars() function in ConfigurationPropertyName.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 55e4845d_b617_c801_b518_23622111525d["getInvalidChars()"] fc00432c_9487_7679_8e66_3ed049432f97["elementsOf()"] fc00432c_9487_7679_8e66_3ed049432f97 -->|calls| 55e4845d_b617_c801_b518_23622111525d 078d0419_5dac_13e0_535f_d4e66b97b64b["getLength()"] 55e4845d_b617_c801_b518_23622111525d -->|calls| 078d0419_5dac_13e0_535f_d4e66b97b64b 56983625_becb_2cdb_d3ed_1a0eb7c431a9["charAt()"] 55e4845d_b617_c801_b518_23622111525d -->|calls| 56983625_becb_2cdb_d3ed_1a0eb7c431a9 dcfb3b08_7151_ff92_9696_31a44cd44ea4["isValidChar()"] 55e4845d_b617_c801_b518_23622111525d -->|calls| dcfb3b08_7151_ff92_9696_31a44cd44ea4 7ed947bf_22a1_2781_a2ae_759aa1907445["add()"] 55e4845d_b617_c801_b518_23622111525d -->|calls| 7ed947bf_22a1_2781_a2ae_759aa1907445 style 55e4845d_b617_c801_b518_23622111525d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java lines 701–710
private static List<Character> getInvalidChars(Elements elements, int index) {
List<Character> invalidChars = new ArrayList<>();
for (int charIndex = 0; charIndex < elements.getLength(index); charIndex++) {
char ch = elements.charAt(index, charIndex);
if (!ElementsParser.isValidChar(ch, charIndex)) {
invalidChars.add(ch);
}
}
return invalidChars;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getInvalidChars() do?
getInvalidChars() is a function in the spring-boot codebase.
What does getInvalidChars() call?
getInvalidChars() calls 4 function(s): add, charAt, getLength, isValidChar.
What calls getInvalidChars()?
getInvalidChars() is called by 1 function(s): elementsOf.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free