Methods Summary |
---|
public JSONArray | isArray()Returns a non-null reference of this JSONValue is really a JSONArray.
return null;
|
public JSONBoolean | isBoolean()Returns a non-null reference of this JSONValue is really a JSONBoolean.
return null;
|
public JSONNumber | isNumber()Returns a non-null reference of this JSONValue is really a JSONNumber.
return null;
|
public JSONObject | isObject()Returns non-null if this JSONValue is really a JSONObject.
return null;
|
public JSONString | isString()Returns a non-null reference of this JSONValue is really a JSONString.
return null;
|
public abstract java.lang.String | toString()This method returns a JSON encoded string for this entity. Use this
method to create JSON strings that can be sent from the client to a server.
|