ImageReference() — spring-boot Function Reference
Architecture documentation for the ImageReference() function in ImageReference.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 3616fb5f_ac0f_5840_431b_7be9d415c0d9["ImageReference()"] 3482ab17_9fef_b976_6ef9_5d10821a58a0["withDigest()"] 3482ab17_9fef_b976_6ef9_5d10821a58a0 -->|calls| 3616fb5f_ac0f_5840_431b_7be9d415c0d9 2a842653_2f5c_1702_c063_f8e0df5fdbce["inTaggedForm()"] 2a842653_2f5c_1702_c063_f8e0df5fdbce -->|calls| 3616fb5f_ac0f_5840_431b_7be9d415c0d9 ca5b7304_853e_ce14_eead_6dc5ab23519b["inTaglessForm()"] ca5b7304_853e_ce14_eead_6dc5ab23519b -->|calls| 3616fb5f_ac0f_5840_431b_7be9d415c0d9 56c6a94a_906f_bea5_18c0_207cf050ae68["of()"] 56c6a94a_906f_bea5_18c0_207cf050ae68 -->|calls| 3616fb5f_ac0f_5840_431b_7be9d415c0d9 9e01b7ff_57f7_9f7e_18c3_6d824f7e318d["buildString()"] 3616fb5f_ac0f_5840_431b_7be9d415c0d9 -->|calls| 9e01b7ff_57f7_9f7e_18c3_6d824f7e318d c3e7f0d3_50c7_ae54_85ad_da5e677154d9["toString()"] 3616fb5f_ac0f_5840_431b_7be9d415c0d9 -->|calls| c3e7f0d3_50c7_ae54_85ad_da5e677154d9 style 3616fb5f_ac0f_5840_431b_7be9d415c0d9 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/ImageReference.java lines 52–58
private ImageReference(ImageName name, @Nullable String tag, @Nullable String digest) {
Assert.notNull(name, "'name' must not be null");
this.name = name;
this.tag = tag;
this.digest = digest;
this.string = buildString(name.toString(), tag, digest);
}
Domain
Subdomains
Calls
Called By
- inTaggedForm()
- inTaglessForm()
- of()
- withDigest()
Source
Frequently Asked Questions
What does ImageReference() do?
ImageReference() is a function in the spring-boot codebase.
What does ImageReference() call?
ImageReference() calls 2 function(s): buildString, toString.
What calls ImageReference()?
ImageReference() is called by 4 function(s): inTaggedForm, inTaglessForm, of, withDigest.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free