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

toString() — spring-boot Function Reference

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

Function java GradlePlugin DslExtensions calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  021658a0_be41_187a_2e68_cb537182e621["toString()"]
  7844338c_85fa_e0fd_b1f6_1e674c27610b["buildName()"]
  7844338c_85fa_e0fd_b1f6_1e674c27610b -->|calls| 021658a0_be41_187a_2e68_cb537182e621
  7463814e_90df_37d1_1e38_9abd56711784["propertiesWithJavaBeanHierarchicalProperties()"]
  7463814e_90df_37d1_1e38_9abd56711784 -->|calls| 021658a0_be41_187a_2e68_cb537182e621
  b311ce8c_db1e_aafa_ce1c_6ef29e5249a4["buildToStringProperty()"]
  021658a0_be41_187a_2e68_cb537182e621 -->|calls| b311ce8c_db1e_aafa_ce1c_6ef29e5249a4
  style 021658a0_be41_187a_2e68_cb537182e621 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/metadata/ItemMetadata.java lines 190–199

	@Override
	public String toString() {
		StringBuilder string = new StringBuilder(this.name);
		buildToStringProperty(string, "type", this.type);
		buildToStringProperty(string, "sourceType", this.sourceType);
		buildToStringProperty(string, "description", this.description);
		buildToStringProperty(string, "defaultValue", this.defaultValue);
		buildToStringProperty(string, "deprecation", this.deprecation);
		return string.toString();
	}

Domain

Subdomains

Calls

  • buildToStringProperty()

Called By

  • buildName()
  • propertiesWithJavaBeanHierarchicalProperties()

Frequently Asked Questions

What does toString() do?
toString() is a function in the spring-boot codebase.
What does toString() call?
toString() calls 1 function(s): buildToStringProperty.
What calls toString()?
toString() is called by 2 function(s): buildName, propertiesWithJavaBeanHierarchicalProperties.

Analyze Your Own Codebase

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

Try Supermodel Free