constructorParameterPropertyWithEmptyDefaultValueOnProperty() — spring-boot Function Reference
Architecture documentation for the constructorParameterPropertyWithEmptyDefaultValueOnProperty() function in ConfigurationMetadataAnnotationProcessorTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD d9e808a8_92bb_0255_46c6_533654ab40e1["constructorParameterPropertyWithEmptyDefaultValueOnProperty()"] 4e7738f0_ea94_abd8_5384_e7be1344cace["compile()"] d9e808a8_92bb_0255_46c6_533654ab40e1 -->|calls| 4e7738f0_ea94_abd8_5384_e7be1344cace a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc["withProperty()"] d9e808a8_92bb_0255_46c6_533654ab40e1 -->|calls| a4041ee3_920f_3ffa_6d69_6e3bcd2c6cdc c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239["getItems()"] d9e808a8_92bb_0255_46c6_533654ab40e1 -->|calls| c8c9e7f6_e856_4711_6fe7_b1c2aeb3d239 a5e4319e_f735_863f_de2c_a0f19a4c7b1d["get()"] d9e808a8_92bb_0255_46c6_533654ab40e1 -->|calls| a5e4319e_f735_863f_de2c_a0f19a4c7b1d e679b8c3_1d8d_f2a3_e26c_19ffb5ad64b1["getDefaultValue()"] d9e808a8_92bb_0255_46c6_533654ab40e1 -->|calls| e679b8c3_1d8d_f2a3_e26c_19ffb5ad64b1 2f92313c_75ed_baa9_94c7_81e700548c9a["equals()"] d9e808a8_92bb_0255_46c6_533654ab40e1 -->|calls| 2f92313c_75ed_baa9_94c7_81e700548c9a style d9e808a8_92bb_0255_46c6_533654ab40e1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java lines 507–517
@Test
void constructorParameterPropertyWithEmptyDefaultValueOnProperty() {
ConfigurationMetadata metadata = compile(EmptyDefaultValueProperties.class);
assertThat(metadata).has(Metadata.withProperty("test.name"));
ItemMetadata nameMetadata = metadata.getItems()
.stream()
.filter((item) -> item.getName().equals("test.name"))
.findFirst()
.get();
assertThat(nameMetadata.getDefaultValue()).isNull();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does constructorParameterPropertyWithEmptyDefaultValueOnProperty() do?
constructorParameterPropertyWithEmptyDefaultValueOnProperty() is a function in the spring-boot codebase.
What does constructorParameterPropertyWithEmptyDefaultValueOnProperty() call?
constructorParameterPropertyWithEmptyDefaultValueOnProperty() calls 6 function(s): compile, equals, get, getDefaultValue, getItems, withProperty.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free