Uses of Interface
org.jooq.JSONEntry
-
Packages that use JSONEntry Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes. -
-
Uses of JSONEntry in org.jooq
Methods in org.jooq that return JSONEntry Modifier and Type Method Description <T> @NotNull JSONEntry<T>JSONEntryValueStep. value(Field<T> value)The JSON entry value.<T> @NotNull JSONEntry<T>JSONEntryValueStep. value(Select<? extends Record1<T>> value)The JSON entry value.<T> @NotNull JSONEntry<T>JSONEntryValueStep. value(T value)The JSON entry value. -
Uses of JSONEntry in org.jooq.impl
Methods in org.jooq.impl that return JSONEntry Modifier and Type Method Description static <T> @NotNull JSONEntry<T>DSL. jsonEntry(String key, Field<T> value)A constructor for JSON entries to be used withDSL.jsonObject(JSONEntry...).static <T> @NotNull JSONEntry<T>DSL. jsonEntry(Field<String> key, Field<T> value)A constructor for JSON entries to be used withDSL.jsonObject(JSONEntry...).static <T> @NotNull JSONEntry<T>DSL. jsonEntry(Field<String> key, T value)A constructor for JSON entries to be used withDSL.jsonObject(JSONEntry...).static <T> @NotNull JSONEntry<T>DSL. jsonEntry(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 @NotNull JSONObjectNullStep<JSONB>DSL. jsonbObject(JSONEntry<?>... entries)The JSONB object constructor.static @NotNull JSONObjectAggNullStep<JSONB>DSL. jsonbObjectAgg(JSONEntry<?> entry)The JSONB object aggregate function.static @NotNull JSONObjectNullStep<JSON>DSL. jsonObject(JSONEntry<?>... entries)The JSON object constructor.static @NotNull JSONObjectAggNullStep<JSON>DSL. jsonObjectAgg(JSONEntry<?> entry)The JSON object aggregate function.Method parameters in org.jooq.impl with type arguments of type JSONEntry Modifier and Type Method Description static @NotNull JSONObjectNullStep<JSONB>DSL. jsonbObject(Collection<? extends JSONEntry<?>> entries)The JSONB object constructor.static @NotNull JSONObjectNullStep<JSON>DSL. jsonObject(Collection<? extends JSONEntry<?>> entries)The JSON object constructor.
-