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

getConfigurationPropertyNames() — spring-boot Function Reference

Architecture documentation for the getConfigurationPropertyNames() function in SpringIterableConfigurationPropertySource.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 4 called by 4

Entity Profile

Dependency Diagram

graph TD
  cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc["getConfigurationPropertyNames()"]
  63a5a4fd_333a_0078_219b_c0bdfc172d60["getConfigurationPropertyNames()"]
  63a5a4fd_333a_0078_219b_c0bdfc172d60 -->|calls| cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc
  2430399e_6aac_1476_584e_753f1f36fc29["stream()"]
  2430399e_6aac_1476_584e_753f1f36fc29 -->|calls| cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc
  8d5042a6_fa71_e1ef_5125_0e96a461ed50["iterator()"]
  8d5042a6_fa71_e1ef_5125_0e96a461ed50 -->|calls| cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc
  674c6da0_2391_7a56_3328_55d5c952976a["ancestorOfCheck()"]
  674c6da0_2391_7a56_3328_55d5c952976a -->|calls| cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc
  63a5a4fd_333a_0078_219b_c0bdfc172d60["getConfigurationPropertyNames()"]
  cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc -->|calls| 63a5a4fd_333a_0078_219b_c0bdfc172d60
  ee5573ec_1b2e_f695_f2f8_190369d6c3e4["isImmutablePropertySource()"]
  cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc -->|calls| ee5573ec_1b2e_f695_f2f8_190369d6c3e4
  b8923f53_f057_a666_68a1_d0acc9a47029["getCache()"]
  cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc -->|calls| b8923f53_f057_a666_68a1_d0acc9a47029
  1ce75a35_5af1_68b8_9853_1aa02c683160["getPropertySource()"]
  cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc -->|calls| 1ce75a35_5af1_68b8_9853_1aa02c683160
  style cda595b2_78e2_1ae4_5bfb_3e13cf1c5bbc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/SpringIterableConfigurationPropertySource.java lines 175–186

	@Nullable ConfigurationPropertyName[] getConfigurationPropertyNames() {
		if (!isImmutablePropertySource()) {
			return getCache().getConfigurationPropertyNames(getPropertySource().getPropertyNames());
		}
		@Nullable ConfigurationPropertyName[] configurationPropertyNames = this.configurationPropertyNames;
		if (configurationPropertyNames == null) {
			configurationPropertyNames = getCache()
				.getConfigurationPropertyNames(getPropertySource().getPropertyNames());
			this.configurationPropertyNames = configurationPropertyNames;
		}
		return configurationPropertyNames;
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does getConfigurationPropertyNames() do?
getConfigurationPropertyNames() is a function in the spring-boot codebase.
What does getConfigurationPropertyNames() call?
getConfigurationPropertyNames() calls 4 function(s): getCache, getConfigurationPropertyNames, getPropertySource, isImmutablePropertySource.
What calls getConfigurationPropertyNames()?
getConfigurationPropertyNames() is called by 4 function(s): ancestorOfCheck, getConfigurationPropertyNames, iterator, stream.

Analyze Your Own Codebase

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

Try Supermodel Free