- java.lang.Object
-
- org.jooq.JSON
-
- All Implemented Interfaces:
Serializable
public final class JSON extends Object implements Serializable
A JSON wrapper type for JSON data obtained from the database.The wrapper represents JSON
data()
in serialised string form. ACAST(NULL AS JSON)
value is represented by anull
reference of typeJSON
, not asdata() == null
. This is consistent with jOOQ's general way of returningNULL
fromResult
andRecord
methods.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
data()
boolean
equals(Object obj)
int
hashCode()
String
toString()
static JSON
valueOf(String data)
-
-
-
Method Detail
-
data
public final String data()
-
-