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

extractLabels() — spring-boot Function Reference

Architecture documentation for the extractLabels() function in ImageConfig.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  b904e426_7c91_eee8_9e80_951cab828205["extractLabels()"]
  95d3ccc0_8824_ad41_eaee_66b86b8a8a16["ImageConfig()"]
  95d3ccc0_8824_ad41_eaee_66b86b8a8a16 -->|calls| b904e426_7c91_eee8_9e80_951cab828205
  76940359_add9_4519_6ff4_94f95a81453d["valueAt()"]
  b904e426_7c91_eee8_9e80_951cab828205 -->|calls| 76940359_add9_4519_6ff4_94f95a81453d
  style b904e426_7c91_eee8_9e80_951cab828205 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/docker/type/ImageConfig.java lines 50–57

	@SuppressWarnings("unchecked")
	private Map<String, String> extractLabels() {
		Map<String, String> labels = valueAt("/Labels", Map.class);
		if (labels == null) {
			return Collections.emptyMap();
		}
		return labels;
	}

Subdomains

Calls

Called By

Frequently Asked Questions

What does extractLabels() do?
extractLabels() is a function in the spring-boot codebase.
What does extractLabels() call?
extractLabels() calls 1 function(s): valueAt.
What calls extractLabels()?
extractLabels() is called by 1 function(s): ImageConfig.

Analyze Your Own Codebase

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

Try Supermodel Free