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

lombokNameAnnotationProperties() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  57700e0f_b479_0a12_8a2d_49f4aceaaa13["lombokNameAnnotationProperties()"]
  a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"]
  57700e0f_b479_0a12_8a2d_49f4aceaaa13 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc
  a7060ba0_7028_1911_946e_7c3090117119["fromSource()"]
  57700e0f_b479_0a12_8a2d_49f4aceaaa13 -->|calls| a7060ba0_7028_1911_946e_7c3090117119
  facc73e3_5f28_4513_9b1f_79367931e644["withDescription()"]
  57700e0f_b479_0a12_8a2d_49f4aceaaa13 -->|calls| facc73e3_5f28_4513_9b1f_79367931e644
  3a84f306_c04e_ed63_ecc7_7013edbb2681["withDefaultValue()"]
  57700e0f_b479_0a12_8a2d_49f4aceaaa13 -->|calls| 3a84f306_c04e_ed63_ecc7_7013edbb2681
  style 57700e0f_b479_0a12_8a2d_49f4aceaaa13 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 77–88

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

Domain

Subdomains

Frequently Asked Questions

What does lombokNameAnnotationProperties() do?
lombokNameAnnotationProperties() is a function in the spring-boot codebase.
What does lombokNameAnnotationProperties() call?
lombokNameAnnotationProperties() 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