Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The JSON datatype supports writing JSON to Strings or Writers.
import static org.camunda.spin.Spin.JSON; SpinJsonNode jsonNode = JSON("{\"customer\": \"Kermit\"}"); String json = jsonNode.toString();
import static org.camunda.spin.Spin.JSON; SpinJsonNode jsonNode = JSON("{\"customer\": \"Kermit\"}"); StringWriter writer = jsonNode.writeToWriter(new StringWriter());