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
  1d43bc9d_07f5_c7c4_97a5_7775988833c5["join()"]
  c4740bf8_facd_b1a4_23c8_ac6499f14a88["get()"]
  1d43bc9d_07f5_c7c4_97a5_7775988833c5 -->|calls| c4740bf8_facd_b1a4_23c8_ac6499f14a88
  016b61d8_1b6e_f6fd_3e8c_64d2f59c0694["toString()"]
  1d43bc9d_07f5_c7c4_97a5_7775988833c5 -->|calls| 016b61d8_1b6e_f6fd_3e8c_64d2f59c0694
  style 1d43bc9d_07f5_c7c4_97a5_7775988833c5 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

cli/spring-boot-cli/src/json-shade/java/org/springframework/boot/cli/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