com.atlassian.confluence.json.json
Interface Json

All Known Implementing Classes:
JsonArray, JsonBoolean, JsonNull, JsonNumber, JsonObject, JsonString

public interface Json

Represents Javascript data with a serialize method to convert the data to a JSON string.


Method Summary
 java.lang.String serialize()
          Returns a JSON-format string representation of this object.
 

Method Detail

serialize

java.lang.String serialize()
Returns a JSON-format string representation of this object.

The string must evaluate in a Javascript engine; i.e. it must be a valid RHS for the Javascript expression: { data : RHS }

Thus, nulls, booleans, numbers, strings, arrays and objects should be supported by implementing classes.

Closures must not be returned with this method.

Returns:
json-format representation of this object
See Also:
for the JSON specification


Copyright © 2003-2009 Atlassian Pty Ltd. All Rights Reserved.