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

toString() — spring-boot Function Reference

Architecture documentation for the toString() function in Profiles.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  9c7f9397_a4a5_a901_1166_655001b62569["toString()"]
  5f9f638e_7c13_8f3e_7750_85f6b2e9b976["getActive()"]
  9c7f9397_a4a5_a901_1166_655001b62569 -->|calls| 5f9f638e_7c13_8f3e_7750_85f6b2e9b976
  fed98e1a_048b_0842_65b1_51dc36ae5b21["getDefault()"]
  9c7f9397_a4a5_a901_1166_655001b62569 -->|calls| fed98e1a_048b_0842_65b1_51dc36ae5b21
  c1e325f1_a571_9cea_962c_f21b999f6b6b["getAccepted()"]
  9c7f9397_a4a5_a901_1166_655001b62569 -->|calls| c1e325f1_a571_9cea_962c_f21b999f6b6b
  799ea91f_58b3_146c_28fa_938989139a31["toString()"]
  9c7f9397_a4a5_a901_1166_655001b62569 -->|calls| 799ea91f_58b3_146c_28fa_938989139a31
  ab2d8162_8b78_6d7d_a007_edd56cb0b2e5["append()"]
  9c7f9397_a4a5_a901_1166_655001b62569 -->|calls| ab2d8162_8b78_6d7d_a007_edd56cb0b2e5
  style 9c7f9397_a4a5_a901_1166_655001b62569 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/Profiles.java lines 215–222

	@Override
	public String toString() {
		ToStringCreator creator = new ToStringCreator(this);
		creator.append("active", getActive().toString());
		creator.append("default", getDefault().toString());
		creator.append("accepted", getAccepted().toString());
		return creator.toString();
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does toString() do?
toString() is a function in the spring-boot codebase.
What does toString() call?
toString() calls 5 function(s): append, getAccepted, getActive, getDefault, toString.

Analyze Your Own Codebase

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

Try Supermodel Free