entryNamesInPath() — spring-boot Function Reference
Architecture documentation for the entryNamesInPath() function in AbstractArchiveIntegrationTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD fcc0b4a4_bbdd_661d_1990_fbca3e127226["entryNamesInPath()"] ab2d861f_92d2_7163_0173_c0e9c03020e7["withJarFile()"] fcc0b4a4_bbdd_661d_1990_fbca3e127226 -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7 24bafa22_417d_c0a7_6b2f_015e45086aa0["withEntries()"] fcc0b4a4_bbdd_661d_1990_fbca3e127226 -->|calls| 24bafa22_417d_c0a7_6b2f_015e45086aa0 style fcc0b4a4_bbdd_661d_1990_fbca3e127226 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/intTest/java/org/springframework/boot/maven/AbstractArchiveIntegrationTests.java lines 177–185
@CheckReturnValue
ListAssert<String> entryNamesInPath(String path) {
List<String> matches = new ArrayList<>();
withJarFile((jarFile) -> withEntries(jarFile,
(entries) -> matches.addAll(entries.map(ZipEntry::getName)
.filter((name) -> name.startsWith(path) && name.length() > path.length())
.toList())));
return new ListAssert<>(matches);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does entryNamesInPath() do?
entryNamesInPath() is a function in the spring-boot codebase.
What does entryNamesInPath() call?
entryNamesInPath() calls 2 function(s): withEntries, withJarFile.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free