EZ JSON
by Nathanaël Cottin

org.ezjson
Class JSONString

java.lang.Object
  extended by org.ezjson.JSONString
All Implemented Interfaces:
JSONValue

public final class JSONString
extends java.lang.Object
implements JSONValue

A JSON string which conforms to the JSON specification

Author:
ncottin

Constructor Summary
JSONString()
          Creates a JSON string with a null internal value
JSONString(java.lang.String value)
          Creates and initializes a JSON string with an initial value
 
Method Summary
 java.lang.String getValue()
           
 void setValue(java.lang.String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JSONString

public JSONString()
Creates a JSON string with a null internal value


JSONString

public JSONString(java.lang.String value)
Creates and initializes a JSON string with an initial value

Parameters:
value - The possibly null initial value
Method Detail

getValue

public java.lang.String getValue()

setValue

public void setValue(java.lang.String value)

EZ JSON
by Nathanaël Cottin