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

join() — spring-boot Function Reference

Architecture documentation for the join() function in JSONArray.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  4d3228aa_eb7f_4a54_0699_f6d39f5664cb["join()"]
  cd6b1b70_1c04_b3ac_5a0c_523269138bce["get()"]
  4d3228aa_eb7f_4a54_0699_f6d39f5664cb -->|calls| cd6b1b70_1c04_b3ac_5a0c_523269138bce
  ba40c0e5_bfda_bf16_1d14_ca522c009158["toString()"]
  4d3228aa_eb7f_4a54_0699_f6d39f5664cb -->|calls| ba40c0e5_bfda_bf16_1d14_ca522c009158
  style 4d3228aa_eb7f_4a54_0699_f6d39f5664cb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-metadata/src/json-shade/java/org/springframework/boot/configurationmetadata/json/JSONArray.java lines 605–616

	public String join(String separator) throws JSONException {
		JSONStringer stringer = new JSONStringer();
		stringer.open(JSONStringer.Scope.NULL, "");
		for (int i = 0, size = this.values.size(); i < size; i++) {
			if (i > 0) {
				stringer.out.append(separator);
			}
			stringer.value(this.values.get(i));
		}
		stringer.close(JSONStringer.Scope.NULL, JSONStringer.Scope.NULL, "");
		return stringer.out.toString();
	}

Domain

Subdomains

Frequently Asked Questions

What does join() do?
join() is a function in the spring-boot codebase.
What does join() call?
join() calls 2 function(s): get, toString.

Analyze Your Own Codebase

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

Try Supermodel Free