Example usage for org.json.extension JSONConstructor toString

List of usage examples for org.json.extension JSONConstructor toString

Introduction

In this page you can find the example usage for org.json.extension JSONConstructor toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:de.cosmocode.palava.bridge.content.JsonContent.java

public JsonContent(JSONConstructor constructor) {
    bytes = constructor == null ? NULL : constructor.toString().getBytes(CHARSET);
}