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
  95180591_fcb2_e6da_22dc_ef48b50d3a5c["join()"]
  93605ca9_8576_4803_faef_67cbcbb051b7["get()"]
  95180591_fcb2_e6da_22dc_ef48b50d3a5c -->|calls| 93605ca9_8576_4803_faef_67cbcbb051b7
  6ffd790e_412d_9280_eae3_28e6a9add3b8["toString()"]
  95180591_fcb2_e6da_22dc_ef48b50d3a5c -->|calls| 6ffd790e_412d_9280_eae3_28e6a9add3b8
  style 95180591_fcb2_e6da_22dc_ef48b50d3a5c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-processor/src/json-shade/java/org/springframework/boot/configurationprocessor/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