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

getIndexed() — spring-boot Function Reference

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

Function java GradlePlugin RunTasks calls 6 called by 1

Entity Profile

Dependency Diagram

graph TD
  772b09b6_d11e_bfff_26ce_f91f0f77fe69["getIndexed()"]
  e0c84b2d_81dc_e784_94a2_bc56b1a98fe9["isOverriddenCollectionElement()"]
  e0c84b2d_81dc_e784_94a2_bc56b1a98fe9 -->|calls| 772b09b6_d11e_bfff_26ce_f91f0f77fe69
  5acc70e6_66e3_8996_e541_fcd335154b61["getNumberOfElements()"]
  772b09b6_d11e_bfff_26ce_f91f0f77fe69 -->|calls| 5acc70e6_66e3_8996_e541_fcd335154b61
  adb8e383_4058_29ca_570d_ef786f054ec1["isNumericIndex()"]
  772b09b6_d11e_bfff_26ce_f91f0f77fe69 -->|calls| adb8e383_4058_29ca_570d_ef786f054ec1
  b2a7a209_a42b_66fa_f429_fea5444fb1b9["Indexed()"]
  772b09b6_d11e_bfff_26ce_f91f0f77fe69 -->|calls| b2a7a209_a42b_66fa_f429_fea5444fb1b9
  bc164715_9139_37ca_1cb7_07a5191210d7["getElement()"]
  772b09b6_d11e_bfff_26ce_f91f0f77fe69 -->|calls| bc164715_9139_37ca_1cb7_07a5191210d7
  8a90add5_32c6_65eb_e312_e210dff95e48["chop()"]
  772b09b6_d11e_bfff_26ce_f91f0f77fe69 -->|calls| 8a90add5_32c6_65eb_e312_e210dff95e48
  0fc42192_9b0a_a3da_b92c_873e4b869194["toString()"]
  772b09b6_d11e_bfff_26ce_f91f0f77fe69 -->|calls| 0fc42192_9b0a_a3da_b92c_873e4b869194
  style 772b09b6_d11e_bfff_26ce_f91f0f77fe69 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 149–157

	private @Nullable Indexed getIndexed(ConfigurationPropertyName candidate) {
		for (int i = 0; i < candidate.getNumberOfElements(); i++) {
			if (candidate.isNumericIndex(i)) {
				return new Indexed(candidate.chop(i).toString(),
						candidate.getElement(i + 1, ConfigurationPropertyName.Form.UNIFORM));
			}
		}
		return null;
	}

Domain

Subdomains

Frequently Asked Questions

What does getIndexed() do?
getIndexed() is a function in the spring-boot codebase.
What does getIndexed() call?
getIndexed() calls 6 function(s): Indexed, chop, getElement, getNumberOfElements, isNumericIndex, toString.
What calls getIndexed()?
getIndexed() is called by 1 function(s): isOverriddenCollectionElement.

Analyze Your Own Codebase

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

Try Supermodel Free