isEmpty() — spring-boot Function Reference
Architecture documentation for the isEmpty() function in ConfigurationPropertyName.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 723faf45_147b_9b0f_f957_9de88f8cbb17["isEmpty()"] 0bed3467_4ef0_e6b2_96b4_6e2b76062046["getImportedMessage()"] 0bed3467_4ef0_e6b2_96b4_6e2b76062046 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 10379bd7_d9a9_c449_5d9e_3d56fd5ff5c0["asContributors()"] 10379bd7_d9a9_c449_5d9e_3d56fd5ff5c0 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 7b5e80ee_fdb0_a0ca_27a9_e33db5ec9552["asBinderOptionsSet()"] 7b5e80ee_fdb0_a0ca_27a9_e33db5ec9552 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 52a0c199_f750_498c_2ff4_2935a3d35369["isActive()"] 52a0c199_f750_498c_2ff4_2935a3d35369 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 8f1c6b28_be4a_c6c7_649c_a12f6e8021a8["expandProfiles()"] 8f1c6b28_be4a_c6c7_649c_a12f6e8021a8 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 6bedaa7b_0853_1ec9_32a6_42cb592b9325["asReversedList()"] 6bedaa7b_0853_1ec9_32a6_42cb592b9325 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 fe919649_c2f5_4a95_7a16_83620ff46401["asUniqueItemList()"] fe919649_c2f5_4a95_7a16_83620ff46401 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 c1e325f1_a571_9cea_962c_f21b999f6b6b["getAccepted()"] c1e325f1_a571_9cea_962c_f21b999f6b6b -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 7049470b_f628_735d_a808_ac3f1e21b5b2["getBindHandler()"] 7049470b_f628_735d_a808_ac3f1e21b5b2 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 ab1f10f2_4493_a842_c36e_0f4d327642e3["findProperty()"] ab1f10f2_4493_a842_c36e_0f4d327642e3 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 c55bce7b_cda0_eb91_5664_a0df4fa3b385["isNestedConstructorBinding()"] c55bce7b_cda0_eb91_5664_a0df4fa3b385 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 ef1b30d7_3319_9377_5512_fe01f5361afb["bindValue()"] ef1b30d7_3319_9377_5512_fe01f5361afb -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 b96ffcc5_6766_3a9b_ede9_be5f729c1b6d["assertNoUnboundChildren()"] b96ffcc5_6766_3a9b_ede9_be5f729c1b6d -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 87daadf6_0233_73e5_c9a6_fa5a37ad45f1["bindAggregate()"] 87daadf6_0233_73e5_c9a6_fa5a37ad45f1 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 style 723faf45_147b_9b0f_f957_9de88f8cbb17 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/properties/source/ConfigurationPropertyName.java lines 88–90
public boolean isEmpty() {
return this.elements.getSize() == 0;
}
Domain
Subdomains
Calls
Called By
- adapt()
- asBinderOptionsSet()
- asContributors()
- asReversedList()
- asUniqueItemList()
- assertNoUnboundChildren()
- bindAggregate()
- bindCreatesImportedContributor()
- bindOrCreateWhenBindSuccessfulShouldReturnBoundValue()
- bindToArrayWhenEmptyStringShouldReturnEmptyArray()
- bindValue()
- bindWhenArrayParameterWithEmptyDefaultValueShouldReturnEmptyInstance()
- bindWhenCollectionParameterWithEmptyDefaultValueShouldReturnEmptyInstance()
- bindWhenConfigDataHasIgnoreImportsOptionsCreatesImportedContributorWithoutImports()
- bindWhenEnumMapParametersWithEmptyDefaultValueShouldReturnEmptyInstance()
- bindWhenMapParametersWithEmptyDefaultValueShouldReturnEmptyInstance()
- bindWhenOptionalParameterInNestedWithNoValueForPrimitiveShouldReturnEmptyInstance()
- bindWhenOptionalParameterWithEmptyDefaultValueShouldReturnEmptyInstance()
- bindWhenOptionalParameterWithNoValueForPrimitiveShouldReturnEmptyInstance()
- buildDefaultToString()
- buildSimpleToString()
- checkNoUnboundElements()
- elementsOf()
- expandProfiles()
- findProperty()
- getAccepted()
- getBindHandler()
- getChildrenWhenHasChildrenReturnsChildren()
- getChildrenWhenHasNoChildrenReturnsEmptyList()
- getImportedMessage()
- getImportsWhenPropertiesIsNullReturnsEmptyList()
- getKeyName()
- hasErrors()
- isActive()
- isNames()
- isNames()
- isNestedConstructorBinding()
- loadWhenBindingOnlyParentContextShouldBind()
- loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind()
- ofCreatesRootContributor()
- ofExistingCreatesExistingContributor()
- ofInitialImportCreatedInitialImportContributor()
- ofUnboundImportCreatesImportedContributor()
- withChildrenReturnsNewInstanceWithChildren()
Source
Frequently Asked Questions
What does isEmpty() do?
isEmpty() is a function in the spring-boot codebase.
What does isEmpty() call?
isEmpty() calls 1 function(s): getSize.
What calls isEmpty()?
isEmpty() is called by 44 function(s): adapt, asBinderOptionsSet, asContributors, asReversedList, asUniqueItemList, assertNoUnboundChildren, bindAggregate, bindCreatesImportedContributor, and 36 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free