get() — spring-boot Function Reference
Architecture documentation for the get() function in ConfigurationPropertyName.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD d7626b8d_946e_609d_ccf0_ffbf47d8df9a["get()"] ee80195a_f8e6_97d9_a296_857edb940511["get()"] ee80195a_f8e6_97d9_a296_857edb940511 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a d1c4fd9d_b483_404e_203a_376e8ba3552b["get()"] d1c4fd9d_b483_404e_203a_376e8ba3552b -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 47f584cc_44d9_3421_c24b_8ab5d06e0243["bindAggregate()"] 47f584cc_44d9_3421_c24b_8ab5d06e0243 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 3057b6d2_0c7d_a4a2_d7c5_6c6d5355ac09["bindAggregate()"] 3057b6d2_0c7d_a4a2_d7c5_6c6d5355ac09 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a ca5c5f5b_c20f_18af_c014_ff6f4c1e88c3["getExistingIfPossible()"] ca5c5f5b_c20f_18af_c014_ff6f4c1e88c3 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 2b43b8a4_a8e1_d2c9_d61b_72b8b23e18d2["bindIndexed()"] 2b43b8a4_a8e1_d2c9_d61b_72b8b23e18d2 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 2b6a4a2d_637f_c6f8_a05f_dc3b5effae75["getExistingIfPossible()"] 2b6a4a2d_637f_c6f8_a05f_dc3b5effae75 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 55903cd9_5256_e728_4a28_35356b7f1bba["onFailure()"] 55903cd9_5256_e728_4a28_35356b7f1bba -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 011061aa_4c8e_1392_dbf8_d2ff5f73ef57["getValidationTarget()"] 011061aa_4c8e_1392_dbf8_d2ff5f73ef57 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 525abbb1_6743_e605_eaba_dadf11b6e4eb["getBoundField()"] 525abbb1_6743_e605_eaba_dadf11b6e4eb -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a bc164715_9139_37ca_1cb7_07a5191210d7["getElement()"] bc164715_9139_37ca_1cb7_07a5191210d7 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 7abf93ba_3935_11c5_2c16_72f1719f101e["append()"] 7abf93ba_3935_11c5_2c16_72f1719f101e -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a 7ed947bf_22a1_2781_a2ae_759aa1907445["add()"] 7ed947bf_22a1_2781_a2ae_759aa1907445 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a ed85a5d1_b6ec_291b_abd6_65ca6b212ddb["loadShouldBindToMapWithNumericKey()"] ed85a5d1_b6ec_291b_abd6_65ca6b212ddb -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a style d7626b8d_946e_609d_ccf0_ffbf47d8df9a 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 883–893
CharSequence get(int index) {
if (this.resolved != null) {
CharSequence element = this.resolved[index];
if (element != null) {
return element;
}
}
int start = this.start[index];
int end = this.end[index];
return this.source.subSequence(start, end);
}
Domain
Subdomains
Called By
- add()
- append()
- bindAggregate()
- bindAggregate()
- bindIndexed()
- bindToArrayShouldBindCharArray()
- bindToArrayShouldReturnArray()
- bindToArrayShouldReturnPrimitiveArray()
- bindToArrayShouldUsePropertyEditor()
- bindToArrayWhenCommaListAndIndexedShouldOnlyUseFirst()
- bindToArrayWhenCommaListShouldReturnPopulatedArray()
- bindToArrayWhenEmptyStringShouldReturnEmptyArray()
- bindToArrayWhenHasExistingCollectionShouldReplaceAllContents()
- bindToArrayWhenHasSpacesShouldTrim()
- bindToArrayWhenIndexedAndCommaListShouldOnlyUseFirst()
- bindToArrayWhenMultipleSourceShouldOnlyUseFirst()
- bindToArrayWhenNestedListShouldReturnPopulatedArray()
- bindToArrayWhenNestedShouldReturnPopulatedArray()
- bindToArrayWhenNonIterableShouldReturnPopulatedArray()
- bindToArrayWhenNotInOrderShouldReturnPopulatedArray()
- bindToArrayWhenStringShouldUsePropertyEditor()
- bindToBeanWithExceptionInGetterForExistingValue()
- bindToClassShouldBindNested()
- bindToClassShouldBindWithGenerics()
- bindToClassShouldCreateBoundBean()
- bindToClassWhenHasNoPrefixShouldCreateBoundBean()
- bindToClassWhenHasPackagePrivateConstructorShouldBind()
- bindToClassWithMultipleConstructorsAndFilterShouldBind()
- bindToClassWithMultipleConstructorsWhenOnlyOneIsNotPrivateShouldBind()
- bindToClassWithNoValueForPrimitiveShouldUseDefault()
- bindToCustomMapWithoutCtorAndConverterShouldResolve()
- bindToEnumMapShouldBind()
- bindToImmutableMapShouldReturnPopulatedMap()
- bindToJavaBeanShouldReturnPopulatedBean()
- bindToJavaBeanWhenHasPropertyWithSameNameShouldStillBind()
- bindToJavaBeanWhenNonIterableShouldReturnPopulatedBean()
- bindToListOfMaps()
- bindToMapNonScalarCollectionShouldPopulateMap()
- bindToMapNonScalarCollectionWithDotKeysShouldBind()
- bindToMapShouldBeGreedyForScalars()
- bindToMapShouldBeGreedyForStrings()
- bindToMapShouldBindNestedMapValue()
- bindToMapShouldBindToMapValue()
- bindToMapShouldConvertKey()
- bindToMapShouldConvertMapValue()
- bindToMapShouldNotTreatClassWithStringConstructorAsScalar()
- bindToMapShouldRespectMapType()
- bindToMapShouldReturnPopulatedMap()
- bindToMapStringArrayWithDotKeysAndCommaSeparatedShouldPreserveDot()
- bindToMapStringArrayWithDotKeysShouldPreserveDot()
- bindToMapStringCollectionWithDotKeysShouldPreserveDot()
- bindToMapWhenEmptyRootNameShouldBindMap()
- bindToMapWhenHasExistingMapShouldReplaceOnlyNewContents()
- bindToMapWhenMapValueIsObjectAndNoRootShouldBindNestedMapValue()
- bindToMapWhenMapValueIsObjectShouldBindNestedMapValue()
- bindToMapWhenMultipleCandidateShouldBindFirst()
- bindToMapWhenMultipleInSameSourceCandidateShouldBindFirst()
- bindToMapWithCustomConverter()
- bindToMapWithCustomConverterAndChildElements()
- bindToMapWithDefaultConstructor()
- bindToMapWithEmptyPrefix()
- bindToMapWithNoDefaultConstructor()
- bindToMapWithNumberKeyAndCommaSeparated()
- bindToMapWithNumberKeyAndIndexed()
- bindToMapWithPlaceholdersShouldBeGreedyForScalars()
- bindToMapWithPlaceholdersShouldResolve()
- bindToMapWithPropertyEditorForKey()
- bindToMapWithPropertyEditorForValue()
- bindToMapWithWildcardShouldConvertToTheRightType()
- bindToPropertiesShouldBeEquivalentToMapOfStringString()
- bindToValueShouldReturnConvertedPropertyValue()
- bindToValueShouldReturnPropertyValue()
- bindToValueShouldReturnPropertyValueFromSecondSource()
- bindToValueWhenMultipleCandidatesShouldReturnFirst()
- bindToValueWithCustomPropertyEditorShouldReturnConvertedValue()
- bindToValueWithMissingPlaceholderShouldResolveToValueWithPlaceholder()
- bindToValueWithPlaceholdersShouldResolve()
- bindWhenBindingToPathTypeWithDefaultValue()
- bindWhenBindingToPathTypeWithValue()
- bindWhenHasAnnotationsShouldChangeConvertedValue()
- bindWhenNotUsingNoUnboundElementsHandlerShouldBind()
- bindWhenUsingNoUnboundElementsHandlerShouldBind()
- bindWhenUsingNoUnboundElementsHandlerShouldBindIfPrefixDifferent()
- bindWhenUsingNoUnboundElementsHandlerShouldBindIfUnboundSystemProperties()
- bindWithAnnotations()
- bindWithAnnotationsAndDefaultValue()
- bindWithEmptyPrefixShouldIgnorePropertiesWithEmptyName()
- bindingWithSquareBracketMap()
- boundPropertiesShouldBeRecorded()
- get()
- get()
- get()
- get()
- get()
- getBoundField()
- getElement()
- getErrorsShouldAdaptFieldErrorsToBeOriginProviders()
- getExistingIfPossible()
- getExistingIfPossible()
- getValidationTarget()
- loadShouldBindToMapWithNumericKey()
- loadWhenBeanFactoryConversionServiceAndConverterBeanCanUseConverterBeanWithCollections()
- loadWhenBindingToMultiConstructorConfigurationProperties()
- loadWhenBindingToMultiConstructorConfigurationPropertiesUsingShortcutSyntax()
- loadWhenConfigurationPropertiesContainsMapWithPositiveAndNegativeIntegerKeys()
- loadWhenUsingSystemPropertiesShouldBindToMap()
- nestedMapsShouldNotBindToNull()
- onFailure()
Source
Frequently Asked Questions
What does get() do?
get() is a function in the spring-boot codebase.
What calls get()?
get() is called by 108 function(s): add, append, bindAggregate, bindAggregate, bindIndexed, bindToArrayShouldBindCharArray, bindToArrayShouldReturnArray, bindToArrayShouldReturnPrimitiveArray, and 100 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free