java.lang.Object
org.jooq.JSONB
- All Implemented Interfaces:
 Serializable
A JSON wrapper type for JSONB data obtained from the database.
 
 The wrapper represents JSONB data() in serialised string form. A
 CAST(NULL AS JSONB) value is represented by a null
 reference of type JSONB, not as data() == null. This is
 consistent with jOOQ's general way of returning NULL from
 Result and Record methods.
- See Also:
 
- 
Method Summary
Modifier and TypeMethodDescriptionfinal @NotNull Stringdata()booleaninthashCode()static final @NotNull JSONBCreate a newJSONBinstance from string data input.static final @Nullable JSONBjsonbOrNull(String data) toString()static final @NotNull JSONBCreate a newJSONBinstance from string data input. 
- 
Method Details
- 
data
 - 
valueOf
Create a newJSONBinstance from string data input. - 
jsonb
Create a newJSONBinstance from string data input.This is the same as
valueOf(String), but it can be static imported. - 
jsonbOrNull
 - 
hashCode
public int hashCode() - 
equals
 - 
toString
 
 -