Uses of Interface
org.jooq.JSONEntry
-
Packages that use JSONEntry Package Description org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes. -
-
Uses of JSONEntry in org.jooq.impl
Methods in org.jooq.impl that return JSONEntry Modifier and Type Method Description static <T> JSONEntry<T>DSL. jsonEntry(Field<String> key, Field<T> value)A constructor for JSON entries to be used withDSL.jsonObject(JSONEntry...).Methods in org.jooq.impl with parameters of type JSONEntry Modifier and Type Method Description static Field<JSONB>DSL. jsonbObject(JSONEntry<?>... entries)The JSONB object constructor.static Field<JSON>DSL. jsonObject(JSONEntry<?>... entries)The JSON object constructor.Method parameters in org.jooq.impl with type arguments of type JSONEntry Modifier and Type Method Description static Field<JSONB>DSL. jsonbObject(Collection<? extends JSONEntry<?>> entries)The JSONB object constructor.static Field<JSON>DSL. jsonObject(Collection<? extends JSONEntry<?>> entries)The JSON object constructor.
-