org.jooq.Converter Java Examples

The following examples show how to use org.jooq.Converter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PostGisGeometryBinding.java    From FROST-Server with GNU Lesser General Public License v3.0 4 votes vote down vote up
@Override
public Converter<Object, Geometry> converter() {
    return CONVERTER_INSTANCE;
}
 
Example #2
Source File: SomeJsonPojoConverter.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Converter<JsonObject, SomeJsonPojo> pgConverter() {
    return pgConvert;
}
 
Example #3
Source File: JSONBToJsonArrayBinding.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Converter<JSONB, JsonArray> converter() {
    return JSONBToJsonArrayConverter.getInstance();
}
 
Example #4
Source File: JSONToJsonObjectBinding.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Converter<JSON, JsonObject> converter() {
    return JSONToJsonObjectConverter.getInstance();
}
 
Example #5
Source File: JSONBToJsonObjectBinding.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Converter<JSONB, JsonObject> converter() {
    return JSONBToJsonObjectConverter.getInstance();
}
 
Example #6
Source File: JSONToJsonArrayBinding.java    From vertx-jooq with MIT License 4 votes vote down vote up
@Override
public Converter<JSON, JsonArray> converter() {
    return JSONToJsonArrayConverter.getInstance();
}
 
Example #7
Source File: PgConverter.java    From vertx-jooq with MIT License 2 votes vote down vote up
/**
 * @return convert from the PGClient-type to the user-type
 */
Converter<P,U> pgConverter();