MCPcopy Index your code
hub / github.com/libgdx/libgdx / json

Method json

gdx/src/com/badlogic/gdx/utils/JsonString.java:136–140  ·  view source on GitHub ↗

Writes the specified JSON string, without quoting or escaping.

(String json)

Source from the content-addressed store, hash-verified

134
135 /** Writes the specified JSON string, without quoting or escaping. */
136 public JsonString json (String json) {
137 requireCommaOrName();
138 buffer.append(json);
139 return this;
140 }
141
142 private void requireCommaOrName () {
143 if ((current & isObject) != 0) {

Callers

nothing calls this directly

Calls 3

requireCommaOrNameMethod · 0.95
nameValueMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected