fromSource() — spring-boot Function Reference
Architecture documentation for the fromSource() function in Metadata.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a7060ba0_7028_1911_946e_7c3090117119["fromSource()"] 488bf290_a240_a910_efae_c97e099cd875["simpleProperties()"] 488bf290_a240_a910_efae_c97e099cd875 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 2dc9de76_88c8_e483_476d_5782caed84fa["simplePrefixValueProperties()"] 2dc9de76_88c8_e483_476d_5782caed84fa -->|calls| a7060ba0_7028_1911_946e_7c3090117119 a1d71b98_bb92_43d3_61f5_4de1d5a4ab79["simpleTypeProperties()"] a1d71b98_bb92_43d3_61f5_4de1d5a4ab79 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 5d561345_59cd_5963_5a98_c172ade9e90f["hierarchicalProperties()"] 5d561345_59cd_5963_5a98_c172ade9e90f -->|calls| a7060ba0_7028_1911_946e_7c3090117119 00f63610_eb6f_e9d9_65fc_2a15abca44c6["enumValues()"] 00f63610_eb6f_e9d9_65fc_2a15abca44c6 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 b50d13ed_087d_a46f_dd40_8022faa317f9["descriptionProperties()"] b50d13ed_087d_a46f_dd40_8022faa317f9 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 6e6f469f_2884_f6f3_34a5_8e0e64f3f4dd["deprecatedProperties()"] 6e6f469f_2884_f6f3_34a5_8e0e64f3f4dd -->|calls| a7060ba0_7028_1911_946e_7c3090117119 60a5e643_a7e5_49db_2019_232477237b6d["singleDeprecatedProperty()"] 60a5e643_a7e5_49db_2019_232477237b6d -->|calls| a7060ba0_7028_1911_946e_7c3090117119 ff092594_c91b_66da_42ab_9a357b1b761e["singleDeprecatedFieldProperty()"] ff092594_c91b_66da_42ab_9a357b1b761e -->|calls| a7060ba0_7028_1911_946e_7c3090117119 a4438679_6d8d_9137_cff6_e0873f00d5a0["deprecatedOnUnrelatedSetter()"] a4438679_6d8d_9137_cff6_e0873f00d5a0 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 768a9f19_e7c1_363c_771b_7a649c725426["deprecatedWithLessPreciseType()"] 768a9f19_e7c1_363c_771b_7a649c725426 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 9760342b_da84_415a_eb31_90c3a2e3c571["deprecatedPropertyOnRecord()"] 9760342b_da84_415a_eb31_90c3a2e3c571 -->|calls| a7060ba0_7028_1911_946e_7c3090117119 e43461d9_9f87_328c_2b62_aae3a9b1d9de["typBoxing()"] e43461d9_9f87_328c_2b62_aae3a9b1d9de -->|calls| a7060ba0_7028_1911_946e_7c3090117119 833f8e30_9c18_a465_4e5e_32ad4ccd7d4a["annotatedGetter()"] 833f8e30_9c18_a465_4e5e_32ad4ccd7d4a -->|calls| a7060ba0_7028_1911_946e_7c3090117119 style a7060ba0_7028_1911_946e_7c3090117119 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
configuration-metadata/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/metadata/Metadata.java lines 178–181
public MetadataItemCondition fromSource(Class<?> sourceType) {
return new MetadataItemCondition(this.itemType, this.name, this.type, sourceType, this.sourceMethod,
this.description, this.defaultValue, this.deprecation);
}
Domain
Subdomains
Calls
Called By
- annotatedGetter()
- assertAccessLevelLombokProperties()
- assertSimpleLombokProperties()
- builderPatternWithGenericReturnType()
- camelCaseEndpoint()
- childProperties()
- complexGenericProperties()
- constructorParameterNameAnnotationProperties()
- customPropertiesEndpoint()
- deprecatedMethodConfig()
- deprecatedMethodConfigOnClass()
- deprecatedOnUnrelatedSetter()
- deprecatedProperties()
- deprecatedPropertyOnRecord()
- deprecatedWithLessPreciseType()
- descriptionProperties()
- enabledEndpoint()
- endpointWithNullableParameter()
- enumValues()
- genericTypes()
- hierarchicalProperties()
- immutableSimpleProperties()
- immutableSimpleProperties()
- incrementalBuild()
- incrementalBuildTypeRenamed()
- incrementalEndpointBuildChangeAccessOfSpecificEndpoint()
- incrementalEndpointBuildChangeCacheFlag()
- incrementalEndpointBuildChangeDefaultAccess()
- innerClassProperties()
- invalidMethodConfig()
- javaBeanNameAnnotationProperties()
- lombokInnerClassProperties()
- lombokInnerClassWithGetterProperties()
- lombokNameAnnotationProperties()
- mergeExistingPropertyDefaultValue()
- mergeExistingPropertyDeprecation()
- mergeExistingPropertyDeprecationOverride()
- mergeExistingPropertyDeprecationOverrideLevel()
- mergeExistingPropertyDescription()
- mergingOfAdditionalMetadata()
- mergingOfAdditionalProperty()
- mergingOfAdditionalPropertyMatchingGroup()
- mergingOfHintWithNonCanonicalName()
- mergingOfHintWithProvider()
- mergingOfSimpleHint()
- methodAndClassConfig()
- methodConfig()
- nestedClassChildProperties()
- noAccessEndpoint()
- overrideChildProperties()
- readOnlyAccessEndpoint()
- recordComponentNameAnnotationProperties()
- shouldTolerateEndpointWithSameId()
- simpleEndpoint()
- simpleGenericProperties()
- simplePrefixValueProperties()
- simpleProperties()
- simpleTypeProperties()
- singleConstructorMethodConfig()
- singleDeprecatedFieldProperty()
- singleDeprecatedProperty()
- specificEndpoint()
- staticAccessor()
- typBoxing()
- unresolvedGenericProperties()
- unrestrictedAccessEndpoint()
- wildcardTypes()
Source
Frequently Asked Questions
What does fromSource() do?
fromSource() is a function in the spring-boot codebase.
What does fromSource() call?
fromSource() calls 1 function(s): MetadataItemCondition.
What calls fromSource()?
fromSource() is called by 67 function(s): annotatedGetter, assertAccessLevelLombokProperties, assertSimpleLombokProperties, builderPatternWithGenericReturnType, camelCaseEndpoint, childProperties, complexGenericProperties, constructorParameterNameAnnotationProperties, and 59 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free