Uses of Interface
org.jooq.ConverterContext
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of ConverterContext in org.jooq
Modifier and TypeMethodDescriptionBindingScope.converterContext()
Get theConverterContext
from the context of thisBindingScope
.ExecuteContext.converterContext()
Get aConverterContext
for the scope of thisExecuteContext
.ExecuteScope.converterContext()
Get theConverterContext
from the context of thisExecuteScope
.Modifier and TypeMethodDescriptionContextConverter.from
(T databaseObject, ConverterContext ctx) Read and convert a database object to a user object.final U
Converters.from
(T t, ConverterContext scope) ContextConverter.to
(U userObject, ConverterContext ctx) Convert and write a user object to a database object.final T
Converters.to
(U u, ConverterContext scope) Modifier and TypeMethodDescriptionstatic <T,
U> @NotNull ContextConverter<T, U> ContextConverter.from
(Class<T> fromType, Class<U> toType, BiFunction<? super T, ? super ConverterContext, ? extends U> from) Construct a new read-only converter from a function.static <T,
U> @NotNull Converter<T, U> ContextConverter.fromNullable
(Class<T> fromType, Class<U> toType, BiFunction<? super T, ? super ConverterContext, ? extends U> from) Construct a new read-only converter from a function.static <T,
U> @NotNull ContextConverter<T, U> ContextConverter.of
(Class<T> fromType, Class<U> toType, BiFunction<? super T, ? super ConverterContext, ? extends U> from, BiFunction<? super U, ? super ConverterContext, ? extends T> to) Construct a new converter from functions.static <T,
U> @NotNull ContextConverter<T, U> ContextConverter.of
(Class<T> fromType, Class<U> toType, BiFunction<? super T, ? super ConverterContext, ? extends U> from, BiFunction<? super U, ? super ConverterContext, ? extends T> to, boolean fromSupported, boolean toSupported) Construct a new converter from functions.static <T,
U> @NotNull ContextConverter<T, U> ContextConverter.ofNullable
(Class<T> fromType, Class<U> toType, BiFunction<? super T, ? super ConverterContext, ? extends U> from, BiFunction<? super U, ? super ConverterContext, ? extends T> to) Construct a new converter from functions.static <T,
U> @NotNull ContextConverter<T, U> ContextConverter.ofNullable
(Class<T> fromType, Class<U> toType, BiFunction<? super T, ? super ConverterContext, ? extends U> from, BiFunction<? super U, ? super ConverterContext, ? extends T> to, boolean fromSupported, boolean toSupported) Construct a new converter from functions.static <T,
U> @NotNull ContextConverter<T, U> ContextConverter.to
(Class<T> fromType, Class<U> toType, BiFunction<? super U, ? super ConverterContext, ? extends T> to) Construct a new write-only converter from a function.static <T,
U> @NotNull Converter<T, U> ContextConverter.toNullable
(Class<T> fromType, Class<U> toType, BiFunction<? super U, ? super ConverterContext, ? extends T> to) Construct a new write-only converter from a function. -
Uses of ConverterContext in org.jooq.impl
Modifier and TypeMethodDescriptionAutoConverter.from
(T t, ConverterContext ctx) final LocalDate
DateToLocalDateConverter.from
(Date t, ConverterContext scope) Deprecated.final U
DelegatingConverter.from
(T t, ConverterContext scope) final T
IdentityConverter.from
(T t, ConverterContext scope) final U
JPAConverter.from
(T t, ConverterContext scope) final LocalDateTime
TimestampToLocalDateTimeConverter.from
(Timestamp t, ConverterContext scope) Deprecated.final LocalTime
TimeToLocalTimeConverter.from
(Time t, ConverterContext scope) Deprecated.AutoConverter.to
(U u, ConverterContext ctx) final Date
DateToLocalDateConverter.to
(LocalDate u, ConverterContext scope) Deprecated.final T
DelegatingConverter.to
(U u, ConverterContext scope) final T
IdentityConverter.to
(T t, ConverterContext scope) final T
JPAConverter.to
(U u, ConverterContext scope) final Timestamp
TimestampToLocalDateTimeConverter.to
(LocalDateTime u, ConverterContext scope) Deprecated.final Time
TimeToLocalTimeConverter.to
(LocalTime u, ConverterContext scope) Deprecated.