[#3896] ConverterProvider is still experimental
This commit is contained in:
parent
c141458372
commit
bc9b0c32bb
@ -302,7 +302,10 @@ public interface Configuration extends Serializable {
|
||||
/**
|
||||
* Get the configured <code>ConverterProvider</code> from this
|
||||
* configuration.
|
||||
*
|
||||
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
|
||||
*/
|
||||
@Deprecated
|
||||
ConverterProvider converterProvider();
|
||||
|
||||
/**
|
||||
@ -439,7 +442,9 @@ public interface Configuration extends Serializable {
|
||||
* @param newConverterProvider The new converter provider to be contained in
|
||||
* the changed configuration.
|
||||
* @return The changed configuration.
|
||||
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
|
||||
*/
|
||||
@Deprecated
|
||||
Configuration set(ConverterProvider newConverterProvider);
|
||||
|
||||
/**
|
||||
@ -562,10 +567,12 @@ public interface Configuration extends Serializable {
|
||||
* Create a derived configuration from this one, with new converter
|
||||
* provider.
|
||||
*
|
||||
* @param newConverterProvider The new converter provider to
|
||||
* be contained in the derived configuration.
|
||||
* @param newConverterProvider The new converter provider to be contained in
|
||||
* the derived configuration.
|
||||
* @return The derived configuration.
|
||||
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
|
||||
*/
|
||||
@Deprecated
|
||||
Configuration derive(ConverterProvider newConverterProvider);
|
||||
|
||||
/**
|
||||
|
||||
@ -45,7 +45,9 @@ package org.jooq;
|
||||
* for any combination of types <code><T></code> and <code><U></code>.
|
||||
*
|
||||
* @author Lukas Eder
|
||||
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ConverterProvider {
|
||||
|
||||
/**
|
||||
|
||||
@ -60,7 +60,9 @@ import org.jooq.Converters;
|
||||
|
||||
/**
|
||||
* @author Lukas Eder
|
||||
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
|
||||
*/
|
||||
@Deprecated
|
||||
public class DefaultConverterProvider implements ConverterProvider {
|
||||
|
||||
final Graph graph = new Graph();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user