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

lombokInnerClassWithGetterProperties() — spring-boot Function Reference

Architecture documentation for the lombokInnerClassWithGetterProperties() function in LombokMetadataGenerationTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  b961a737_b97a_48c0_1c98_040f4578e65a["lombokInnerClassWithGetterProperties()"]
  83ee5c58_5d39_6a9f_3b4b_81ba336603a7["withGroup()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| 83ee5c58_5d39_6a9f_3b4b_81ba336603a7
  a7060ba0_7028_1911_946e_7c3090117119["fromSource()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| a7060ba0_7028_1911_946e_7c3090117119
  70751124_3e92_ed3e_7f93_61d2e98490d3["ofType()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| 70751124_3e92_ed3e_7f93_61d2e98490d3
  7132b0ee_395d_446d_9076_a3b6ab00ccbb["fromSourceMethod()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| 7132b0ee_395d_446d_9076_a3b6ab00ccbb
  30b77310_1fff_856f_8288_c9f5c07b6e8b["getFirst()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| 30b77310_1fff_856f_8288_c9f5c07b6e8b
  a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc
  c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239["getItems()"]
  b961a737_b97a_48c0_1c98_040f4578e65a -->|calls| c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239
  style b961a737_b97a_48c0_1c98_040f4578e65a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/LombokMetadataGenerationTests.java lines 122–132

	@Test
	void lombokInnerClassWithGetterProperties() {
		ConfigurationMetadata metadata = compile(LombokInnerClassWithGetterProperties.class);
		assertThat(metadata).has(Metadata.withGroup("config").fromSource(LombokInnerClassWithGetterProperties.class));
		assertThat(metadata).has(Metadata.withGroup("config.first")
			.ofType(LombokInnerClassWithGetterProperties.Foo.class)
			.fromSourceMethod("getFirst()")
			.fromSource(LombokInnerClassWithGetterProperties.class));
		assertThat(metadata).has(Metadata.withProperty("config.first.name"));
		assertThat(metadata.getItems()).hasSize(3);
	}

Domain

Subdomains

Frequently Asked Questions

What does lombokInnerClassWithGetterProperties() do?
lombokInnerClassWithGetterProperties() is a function in the spring-boot codebase.
What does lombokInnerClassWithGetterProperties() call?
lombokInnerClassWithGetterProperties() calls 7 function(s): fromSource, fromSourceMethod, getFirst, getItems, ofType, withGroup, withProperty.

Analyze Your Own Codebase

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

Try Supermodel Free