Package jsonvalues
Class JsNull
- java.lang.Object
-
- jsonvalues.JsNull
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(@Nullable Object that)
Returns true if that is the singletonNULL
.int
hashCode()
Returns the hashcode of this json nullboolean
isArray()
boolean
isBigDec()
boolean
isBigInt()
boolean
isBool()
boolean
isDouble()
boolean
isFalse()
boolean
isInt()
boolean
isLong()
boolean
isNothing()
boolean
isNull()
boolean
isNumber()
boolean
isObj()
boolean
isStr()
boolean
isTrue()
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jsonvalues.JsElem
asJsArray, asJsBigDec, asJsBigInt, asJsBool, asJsDouble, asJsInt, asJsLong, asJsObj, asJson, asJsStr, isArray, isBigDec, isBigInt, isDecimal, isDouble, isInstant, isInstant, isInt, isIntegral, isJson, isJson, isLocalDate, isLocalDate, isLocalDateTime, isLocalDateTime, isLong, isNotJson, isNotNothing, isNotNull, isNotNumber, isObj, isSameType, isStr
-
-
-
-
Field Detail
-
NULL
public static final JsNull NULL
The singleton null value.
-
-
Method Detail
-
hashCode
public int hashCode()
Returns the hashcode of this json null
-
isObj
public boolean isObj()
-
isArray
public boolean isArray()
-
isNothing
public boolean isNothing()
-
isNull
public boolean isNull()
-
isNumber
public boolean isNumber()
-
isBool
public boolean isBool()
-
isTrue
public boolean isTrue()
-
isFalse
public boolean isFalse()
-
isInt
public boolean isInt()
-
isDouble
public boolean isDouble()
-
isBigDec
public boolean isBigDec()
-
isLong
public boolean isLong()
-
isStr
public boolean isStr()
-
-