of() — spring-boot Function Reference
Architecture documentation for the of() function in ContainerConfig.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD a58d102b_66f6_73b3_99af_c203f01d5a6d["of()"] 855eaa07_dda9_910b_1a21_6e3211acf829["Update()"] a58d102b_66f6_73b3_99af_c203f01d5a6d -->|calls| 855eaa07_dda9_910b_1a21_6e3211acf829 26d4acb6_cb1a_cc41_48d5_66abeb804236["run()"] a58d102b_66f6_73b3_99af_c203f01d5a6d -->|calls| 26d4acb6_cb1a_cc41_48d5_66abeb804236 style a58d102b_66f6_73b3_99af_c203f01d5a6d 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/ContainerConfig.java lines 103–107
public static ContainerConfig of(ImageReference imageReference, Consumer<Update> update) {
Assert.notNull(imageReference, "'imageReference' must not be null");
Assert.notNull(update, "'update' must not be null");
return new Update(imageReference).run(update);
}
Domain
Subdomains
Calls
- Update()
- run()
Source
Frequently Asked Questions
What does of() do?
of() is a function in the spring-boot codebase.
What does of() call?
of() calls 2 function(s): Update, run.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free