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

constructorParameterNameAnnotationProperties() — spring-boot Function Reference

Architecture documentation for the constructorParameterNameAnnotationProperties() function in NameAnnotationPropertiesTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  db5f6c7d_52ad_cea6_b9ef_a869daf91d6f["constructorParameterNameAnnotationProperties()"]
  a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"]
  db5f6c7d_52ad_cea6_b9ef_a869daf91d6f -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc
  a7060ba0_7028_1911_946e_7c3090117119["fromSource()"]
  db5f6c7d_52ad_cea6_b9ef_a869daf91d6f -->|calls| a7060ba0_7028_1911_946e_7c3090117119
  facc73e3_5f28_4513_9b1f_79367931e644["withDescription()"]
  db5f6c7d_52ad_cea6_b9ef_a869daf91d6f -->|calls| facc73e3_5f28_4513_9b1f_79367931e644
  3a84f306_c04e_ed63_ecc7_7013edbb2681["withDefaultValue()"]
  db5f6c7d_52ad_cea6_b9ef_a869daf91d6f -->|calls| 3a84f306_c04e_ed63_ecc7_7013edbb2681
  style db5f6c7d_52ad_cea6_b9ef_a869daf91d6f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/NameAnnotationPropertiesTests.java lines 38–49

	@Test
	void constructorParameterNameAnnotationProperties() {
		ConfigurationMetadata metadata = compile(ConstructorParameterNameAnnotationProperties.class);
		assertThat(metadata)
			.has(Metadata.withProperty("named.import", String.class)
				.fromSource(ConstructorParameterNameAnnotationProperties.class)
				.withDescription("Imports to apply."))
			.has(Metadata.withProperty("named.default", Boolean.class)
				.fromSource(ConstructorParameterNameAnnotationProperties.class)
				.withDefaultValue("Whether default mode is enabled.")
				.withDefaultValue(true));
	}

Domain

Subdomains

Frequently Asked Questions

What does constructorParameterNameAnnotationProperties() do?
constructorParameterNameAnnotationProperties() is a function in the spring-boot codebase.
What does constructorParameterNameAnnotationProperties() call?
constructorParameterNameAnnotationProperties() calls 4 function(s): fromSource, withDefaultValue, withDescription, withProperty.

Analyze Your Own Codebase

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

Try Supermodel Free