diff --git a/jOOQ/src/main/java/org/jooq/Binding.java b/jOOQ/src/main/java/org/jooq/Binding.java index eb1e40cb6a..78af35f0b2 100644 --- a/jOOQ/src/main/java/org/jooq/Binding.java +++ b/jOOQ/src/main/java/org/jooq/Binding.java @@ -82,6 +82,12 @@ public interface Binding extends Serializable { /** * A converter that can convert between the database type and the custom * type. + *

+ * While the {@link Converter} property of a binding is not optional + * ({@link Converter#fromType()} and {@link Converter#toType()} are needed + * by jOOQ's internals), the conversion implementation (i.e. + * {@link Converter#from(Object)} and {@link Converter#to(Object)}) isn't + * strictly required if implementations don't rely on it. */ @NotNull Converter converter();