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

getValue() — spring-boot Function Reference

Architecture documentation for the getValue() function in MapConfigurationPropertySourceTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  11404d26_655b_2b7a_09eb_aeb59d7693f7["getValue()"]
  fa4136c1_467c_fec6_a136_9c4711b14d21["createWhenMapHasEntriesShouldAdaptMap()"]
  fa4136c1_467c_fec6_a136_9c4711b14d21 -->|calls| 11404d26_655b_2b7a_09eb_aeb59d7693f7
  edf85ac2_3dd9_ad0a_c725_17ef7f474a2f["putAllShouldPutEntries()"]
  edf85ac2_3dd9_ad0a_c725_17ef7f474a2f -->|calls| 11404d26_655b_2b7a_09eb_aeb59d7693f7
  3658e43b_69d4_0567_8878_0a54c71391cf["putShouldPutEntry()"]
  3658e43b_69d4_0567_8878_0a54c71391cf -->|calls| 11404d26_655b_2b7a_09eb_aeb59d7693f7
  60c0e94d_a865_4bd1_01b8_165708692a82["getConfigurationPropertyShouldGetFromMemory()"]
  60c0e94d_a865_4bd1_01b8_165708692a82 -->|calls| 11404d26_655b_2b7a_09eb_aeb59d7693f7
  style 11404d26_655b_2b7a_09eb_aeb59d7693f7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/source/MapConfigurationPropertySourceTests.java lines 107–110

	private @Nullable Object getValue(ConfigurationPropertySource source, String name) {
		ConfigurationProperty property = source.getConfigurationProperty(ConfigurationPropertyName.of(name));
		return (property != null) ? property.getValue() : null;
	}

Domain

Subdomains

Called By

  • createWhenMapHasEntriesShouldAdaptMap()
  • getConfigurationPropertyShouldGetFromMemory()
  • putAllShouldPutEntries()
  • putShouldPutEntry()

Frequently Asked Questions

What does getValue() do?
getValue() is a function in the spring-boot codebase.
What calls getValue()?
getValue() is called by 4 function(s): createWhenMapHasEntriesShouldAdaptMap, getConfigurationPropertyShouldGetFromMemory, putAllShouldPutEntries, putShouldPutEntry.

Analyze Your Own Codebase

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

Try Supermodel Free