diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java index 22d3aa08e6..f748882a59 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Factory.java +++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java @@ -3986,7 +3986,7 @@ public class Factory implements FactoryOperations { } /** - * Get a value + * Get a bind value *

* jOOQ tries to derive the RDBMS {@link DataType} from the provided Java * type <T>. This may not always be accurate, which can @@ -3996,9 +3996,9 @@ public class Factory implements FactoryOperations { *

  • {@link SQLDialect#DERBY}
  • *
  • {@link SQLDialect#DB2}
  • *
  • {@link SQLDialect#H2}
  • - *
  • {@link SQLDialect#HSQLDB} - *
  • {@link SQLDialect#INGRES} - *
  • {@link SQLDialect#SYBASE} + *
  • {@link SQLDialect#HSQLDB}
  • + *
  • {@link SQLDialect#INGRES}
  • + *
  • {@link SQLDialect#SYBASE}
  • * *

    * If you need more type-safety, please use {@link #val(Object, DataType)} @@ -4030,7 +4030,7 @@ public class Factory implements FactoryOperations { } /** - * Get a value with an associated type, taken from a field + * Get a bind value with an associated type, taken from a field * * @param The generic value type * @param value The constant value @@ -4044,7 +4044,7 @@ public class Factory implements FactoryOperations { } /** - * Get a value with an associated type, taken from a field + * Get a bind value with an associated type, taken from a field * * @param The generic value type * @param value The constant value @@ -4058,7 +4058,7 @@ public class Factory implements FactoryOperations { } /** - * Get a value with an associated type + * Get a bind value with an associated type *

    * This will try to bind value as type in a * PreparedStatement. If value and @@ -4094,7 +4094,7 @@ public class Factory implements FactoryOperations { } /** - * Get a list of values and fields + * Get a list of bind values and fields */ @Support public static List> vals(Object... values) {