public class

JSONNull

extends JSONValue
java.lang.Object
   ↳ com.google.gwt.json.client.JSONValue
     ↳ com.google.gwt.json.client.JSONNull

Class Overview

Represents the JSON null value.

Summary

Public Methods
static JSONNull getInstance()
Returns the singleton null-valued JSON object.
JSONNull isNull()
Returns this, as this is a JSONNull.
String toString()
Returns "null" to allow for formatting null values.
[Expand]
Inherited Methods
From class com.google.gwt.json.client.JSONValue
From class java.lang.Object

Public Methods

public static JSONNull getInstance ()

Returns the singleton null-valued JSON object.

public JSONNull isNull ()

Returns this, as this is a JSONNull.

Returns
  • a reference to a JSONNull if this JSONValue is a JSONNull or null otherwise.

public String toString ()

Returns "null" to allow for formatting null values.