com.google.gson
Class JsonNull
java.lang.Object
com.google.gson.JsonElement
com.google.gson.JsonNull
public final class JsonNull
- extends JsonElement
A class representing a Json null
value.
- Since:
- 1.2
- Author:
- Inderjeet Singh, Joel Leitch
Constructor Summary |
JsonNull()
Creates a new JsonNull object. |
Method Summary |
boolean |
equals(Object other)
All instances of JsonNull are the same |
int |
hashCode()
All instances of JsonNull have the same hash code since they are indistinguishable |
Methods inherited from class com.google.gson.JsonElement |
getAsBigDecimal, getAsBigInteger, getAsBoolean, getAsByte, getAsCharacter, getAsDouble, getAsFloat, getAsInt, getAsJsonArray, getAsJsonNull, getAsJsonObject, getAsJsonPrimitive, getAsLong, getAsNumber, getAsShort, getAsString, isJsonArray, isJsonNull, isJsonObject, isJsonPrimitive, toString |
JsonNull
public JsonNull()
- Creates a new JsonNull object.
hashCode
public int hashCode()
- All instances of JsonNull have the same hash code since they are indistinguishable
- Overrides:
hashCode
in class Object
equals
public boolean equals(Object other)
- All instances of JsonNull are the same
- Overrides:
equals
in class Object
Copyright © 2008-2010. All Rights Reserved.