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

isUnbound() — spring-boot Function Reference

Architecture documentation for the isUnbound() function in NoUnboundElementsBindHandler.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  3e36b84b_bdb9_7b8c_9f97_88cf91923361["isUnbound()"]
  0b6e9be8_c7bc_cd8a_a9ed_7a3bc23be809["collectUnbound()"]
  0b6e9be8_c7bc_cd8a_a9ed_7a3bc23be809 -->|calls| 3e36b84b_bdb9_7b8c_9f97_88cf91923361
  8a3d9db5_328f_e1f5_894e_8f21318d0e64["isAncestorOf()"]
  3e36b84b_bdb9_7b8c_9f97_88cf91923361 -->|calls| 8a3d9db5_328f_e1f5_894e_8f21318d0e64
  e0c84b2d_81dc_e784_94a2_bc56b1a98fe9["isOverriddenCollectionElement()"]
  3e36b84b_bdb9_7b8c_9f97_88cf91923361 -->|calls| e0c84b2d_81dc_e784_94a2_bc56b1a98fe9
  style 3e36b84b_bdb9_7b8c_9f97_88cf91923361 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/properties/bind/handler/NoUnboundElementsBindHandler.java lines 121–126

	private boolean isUnbound(ConfigurationPropertyName name, ConfigurationPropertyName candidate) {
		if (name.isAncestorOf(candidate)) {
			return !this.boundNames.contains(candidate) && !isOverriddenCollectionElement(candidate);
		}
		return false;
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does isUnbound() do?
isUnbound() is a function in the spring-boot codebase.
What does isUnbound() call?
isUnbound() calls 2 function(s): isAncestorOf, isOverriddenCollectionElement.
What calls isUnbound()?
isUnbound() is called by 1 function(s): collectUnbound.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free