mapAt() — spring-boot Function Reference
Architecture documentation for the mapAt() function in MappedObject.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 3cfd0bb3_8381_5b2a_784a_907466204a5d["mapAt()"] 7e5fa624_9e66_50e3_d05d_c5231bbd0bad["DockerConfig()"] 7e5fa624_9e66_50e3_d05d_c5231bbd0bad -->|calls| 3cfd0bb3_8381_5b2a_784a_907466204a5d 0a30dec0_ee80_627a_bd43_c83b3aa07818["getNode()"] 3cfd0bb3_8381_5b2a_784a_907466204a5d -->|calls| 0a30dec0_ee80_627a_bd43_c83b3aa07818 style 3cfd0bb3_8381_5b2a_784a_907466204a5d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buildpack/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/json/MappedObject.java lines 92–98
protected <V> Map<String, V> mapAt(String expression, Function<JsonNode, V> valueMapper) {
Map<String, V> map = new LinkedHashMap<>();
getNode().at(expression)
.properties()
.forEach((entry) -> map.put(entry.getKey(), valueMapper.apply(entry.getValue())));
return Collections.unmodifiableMap(map);
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does mapAt() do?
mapAt() is a function in the spring-boot codebase.
What does mapAt() call?
mapAt() calls 1 function(s): getNode.
What calls mapAt()?
mapAt() is called by 1 function(s): DockerConfig.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free