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

getValues() — spring-boot Function Reference

Architecture documentation for the getValues() function in AutoConfigureAnnotationProcessor.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  2d669371_a658_31c2_7f78_8cb79e788354["getValues()"]
  3ba2493f_400f_e86c_b87c_8d9b93ffabc2["processElement()"]
  3ba2493f_400f_e86c_b87c_8d9b93ffabc2 -->|calls| 2d669371_a658_31c2_7f78_8cb79e788354
  57c5be39_3096_8cf7_ccf2_3d97e045a11f["getValueExtractor()"]
  2d669371_a658_31c2_7f78_8cb79e788354 -->|calls| 57c5be39_3096_8cf7_ccf2_3d97e045a11f
  77b8d6af_4146_706b_c585_024693c21627["getValues()"]
  2d669371_a658_31c2_7f78_8cb79e788354 -->|calls| 77b8d6af_4146_706b_c585_024693c21627
  style 2d669371_a658_31c2_7f78_8cb79e788354 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot-autoconfigure-processor/src/main/java/org/springframework/boot/autoconfigureprocessor/AutoConfigureAnnotationProcessor.java lines 166–172

	private List<Object> getValues(PropertyGenerator generator, String annotationName, AnnotationMirror annotation) {
		ValueExtractor extractor = generator.getValueExtractor(annotationName);
		if (extractor == null) {
			return Collections.emptyList();
		}
		return extractor.getValues(annotation);
	}

Domain

Subdomains

Calls

Called By

Frequently Asked Questions

What does getValues() do?
getValues() is a function in the spring-boot codebase.
What does getValues() call?
getValues() calls 2 function(s): getValueExtractor, getValues.
What calls getValues()?
getValues() is called by 1 function(s): processElement.

Analyze Your Own Codebase

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

Try Supermodel Free