Home / Function/ doesNotHaveEntryWithNameStartingWith() — spring-boot Function Reference

doesNotHaveEntryWithNameStartingWith() — spring-boot Function Reference

Architecture documentation for the doesNotHaveEntryWithNameStartingWith() function in AbstractArchiveIntegrationTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  dfaa76e9_1f09_8ea0_5c00_ddb7837a45cc["doesNotHaveEntryWithNameStartingWith()"]
  ab2d861f_92d2_7163_0173_c0e9c03020e7["withJarFile()"]
  dfaa76e9_1f09_8ea0_5c00_ddb7837a45cc -->|calls| ab2d861f_92d2_7163_0173_c0e9c03020e7
  24bafa22_417d_c0a7_6b2f_015e45086aa0["withEntries()"]
  dfaa76e9_1f09_8ea0_5c00_ddb7837a45cc -->|calls| 24bafa22_417d_c0a7_6b2f_015e45086aa0
  style dfaa76e9_1f09_8ea0_5c00_ddb7837a45cc 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 166–175

		JarAssert doesNotHaveEntryWithNameStartingWith(String prefix) {
			withJarFile((jarFile) -> {
				withEntries(jarFile, (entries) -> {
					Optional<JarEntry> match = entries.filter((entry) -> entry.getName().startsWith(prefix))
						.findFirst();
					assertThat(match).isNotPresent();
				});
			});
			return this;
		}

Domain

Subdomains

Frequently Asked Questions

What does doesNotHaveEntryWithNameStartingWith() do?
doesNotHaveEntryWithNameStartingWith() is a function in the spring-boot codebase.
What does doesNotHaveEntryWithNameStartingWith() call?
doesNotHaveEntryWithNameStartingWith() 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