diff --git a/jOOQ/src/main/java/org/jooq/impl/SQLDataType.java b/jOOQ/src/main/java/org/jooq/impl/SQLDataType.java index 60291b6c8a..2b6efdc769 100644 --- a/jOOQ/src/main/java/org/jooq/impl/SQLDataType.java +++ b/jOOQ/src/main/java/org/jooq/impl/SQLDataType.java @@ -94,42 +94,42 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The {@link Types#VARCHAR} type + * The {@link Types#VARCHAR} type. */ public static final DataType VARCHAR = new DefaultDataType(null, String.class, "varchar"); /** - * The {@link Types#CHAR} type + * The {@link Types#CHAR} type. */ public static final DataType CHAR = new DefaultDataType(null, String.class, "char"); /** - * The {@link Types#LONGVARCHAR} type + * The {@link Types#LONGVARCHAR} type. */ public static final DataType LONGVARCHAR = new DefaultDataType(null, String.class, "longvarchar"); /** - * The {@link Types#CLOB} type + * The {@link Types#CLOB} type. */ public static final DataType CLOB = new DefaultDataType(null, String.class, "clob"); /** - * The {@link Types#NVARCHAR} type + * The {@link Types#NVARCHAR} type. */ public static final DataType NVARCHAR = new DefaultDataType(null, String.class, "nvarchar"); /** - * The {@link Types#NCHAR} type + * The {@link Types#NCHAR} type. */ public static final DataType NCHAR = new DefaultDataType(null, String.class, "nchar"); /** - * The {@link Types#LONGNVARCHAR} type + * The {@link Types#LONGNVARCHAR} type. */ public static final DataType LONGNVARCHAR = new DefaultDataType(null, String.class, "longnvarchar"); /** - * The {@link Types#NCLOB} type + * The {@link Types#NCLOB} type. */ public static final DataType NCLOB = new DefaultDataType(null, String.class, "nclob"); @@ -138,12 +138,12 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The {@link Types#BOOLEAN} type + * The {@link Types#BOOLEAN} type. */ public static final DataType BOOLEAN = new DefaultDataType(null, Boolean.class, "boolean"); /** - * The {@link Types#BIT} type + * The {@link Types#BIT} type. */ public static final DataType BIT = new DefaultDataType(null, Boolean.class, "bit"); @@ -152,27 +152,27 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The {@link Types#TINYINT} type + * The {@link Types#TINYINT} type. */ public static final DataType TINYINT = new DefaultDataType(null, Byte.class, "tinyint"); /** - * The {@link Types#SMALLINT} type + * The {@link Types#SMALLINT} type. */ public static final DataType SMALLINT = new DefaultDataType(null, Short.class, "smallint"); /** - * The {@link Types#INTEGER} type + * The {@link Types#INTEGER} type. */ public static final DataType INTEGER = new DefaultDataType(null, Integer.class, "integer"); /** - * The {@link Types#BIGINT} type + * The {@link Types#BIGINT} type. */ public static final DataType BIGINT = new DefaultDataType(null, Long.class, "bigint"); /** - * The zero-scale {@link Types#DECIMAL} type + * The zero-scale {@link Types#DECIMAL} type. */ public static final DataType DECIMAL_INTEGER = new DefaultDataType(null, BigInteger.class, "decimal_integer"); @@ -181,22 +181,22 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The unsigned {@link Types#TINYINT} type + * The unsigned {@link Types#TINYINT} type. */ public static final DataType TINYINTUNSIGNED = new DefaultDataType(null, UByte.class, "tinyintunsigned"); /** - * The unsigned {@link Types#SMALLINT} type + * The unsigned {@link Types#SMALLINT} type. */ public static final DataType SMALLINTUNSIGNED = new DefaultDataType(null, UShort.class, "smallintunsigned"); /** - * The unsigned {@link Types#INTEGER} type + * The unsigned {@link Types#INTEGER} type. */ public static final DataType INTEGERUNSIGNED = new DefaultDataType(null, UInteger.class, "integerunsigned"); /** - * The unsigned {@link Types#BIGINT} type + * The unsigned {@link Types#BIGINT} type. */ public static final DataType BIGINTUNSIGNED = new DefaultDataType(null, ULong.class, "bigintunsigned"); @@ -205,17 +205,17 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The {@link Types#DOUBLE} type + * The {@link Types#DOUBLE} type. */ public static final DataType DOUBLE = new DefaultDataType(null, Double.class, "double"); /** - * The {@link Types#FLOAT} type + * The {@link Types#FLOAT} type. */ public static final DataType FLOAT = new DefaultDataType(null, Double.class, "float"); /** - * The {@link Types#REAL} type + * The {@link Types#REAL} type. */ public static final DataType REAL = new DefaultDataType(null, Float.class, "real"); @@ -224,12 +224,12 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The {@link Types#NUMERIC} type + * The {@link Types#NUMERIC} type. */ public static final DataType NUMERIC = new DefaultDataType(null, BigDecimal.class, "numeric"); /** - * The {@link Types#DECIMAL} type + * The {@link Types#DECIMAL} type. */ public static final DataType DECIMAL = new DefaultDataType(null, BigDecimal.class, "decimal"); @@ -238,27 +238,27 @@ public final class SQLDataType { // ------------------------------------------------------------------------- /** - * The {@link Types#DATE} type + * The {@link Types#DATE} type. */ public static final DataType DATE = new DefaultDataType(null, Date.class, "date"); /** - * The {@link Types#TIMESTAMP} type + * The {@link Types#TIMESTAMP} type. */ public static final DataType TIMESTAMP = new DefaultDataType(null, Timestamp.class, "timestamp"); /** - * The {@link Types#TIME} type + * The {@link Types#TIME} type. */ public static final DataType