T
- The database type - i.e. any type available from
SQLDataType
U
- The user typepublic interface Converter<T,U>
extends java.io.Serializable
Converter
for data types.
A general data type conversion interface that can be provided to jOOQ at
various places in order to perform custom data type conversion. Conversion is
directed, this means that the Converter
is used
fromType()
is the type as defined in the database.toType()
is the user-defined type
Note: In order to avoid unwanted side-effects, it is highly recommended (yet
not required) for from(Object)
and to(Object)
to be
reciprocal. The two methods are reciprocal, if for all
X and Y
, it can be said that
Y.equals(converter.from(X))
, then
X.equals(converter.to(Y))
.X.equals(converter.from(converter.to(X)))
X.equals(converter.to(converter.from(X)))
Furthermore, it is recommended (yet not required) that
converter.from(null) == null
converter.to(null) == null
Modifier and Type | Method and Description |
---|---|
default <X> Converter<T,X> |
andThen(Converter<? super U,X> converter)
Chain a converter to this converter.
|
U |
from(T databaseObject)
Convert a database object to a user object
|
java.lang.Class<T> |
fromType()
The database type
|
default Converter<U,T> |
inverse()
Inverse this converter.
|
static <T,U> Converter<T,U> |
of(java.lang.Class<T> fromType,
java.lang.Class<U> toType,
java.util.function.Function<? super T,? extends U> from,
java.util.function.Function<? super U,? extends T> to)
Construct a new converter from functions.
|
static <T,U> Converter<T,U> |
ofNullable(java.lang.Class<T> fromType,
java.lang.Class<U> toType,
java.util.function.Function<? super T,? extends U> from,
java.util.function.Function<? super U,? extends T> to)
Construct a new converter from functions.
|
T |
to(U userObject)
Convert a user object to a database object
|
java.lang.Class<U> |
toType()
The user type
|
U from(T databaseObject)
databaseObject
- The database objectT to(U userObject)
userObject
- The user objectjava.lang.Class<T> fromType()
java.lang.Class<U> toType()
default <X> Converter<T,X> andThen(Converter<? super U,X> converter)
static <T,U> Converter<T,U> of(java.lang.Class<T> fromType, java.lang.Class<U> toType, java.util.function.Function<? super T,? extends U> from, java.util.function.Function<? super U,? extends T> to)
T
- the database typeU
- the user typefromType
- The database typetoType
- The user typefrom
- A function converting from T to Uto
- A function converting from U to TConverter
static <T,U> Converter<T,U> ofNullable(java.lang.Class<T> fromType, java.lang.Class<U> toType, java.util.function.Function<? super T,? extends U> from, java.util.function.Function<? super U,? extends T> to)
This works like of(Class, Class, Function, Function)
,
except that both conversion Function
s are decorated with a
function that always returns null
for null
inputs.
Example:
Converter
T
- the database typeU
- the user typefromType
- The database typetoType
- The user typefrom
- A function converting from T to Uto
- A function converting from U to TConverter
Copyright © 2018. All Rights Reserved.