[jOOQ/jOOQ#6244] Add nullability annotations to jOOQ API

- DataType.getSQLDataType() is nullable
This commit is contained in:
Lukas Eder 2020-06-19 12:08:31 +02:00
parent 824e689f19
commit 2f4997c435

View File

@ -84,7 +84,7 @@ public interface DataType<T> extends Named {
* Get the standard SQL data type of this (dialect-specific) data type if
* available.
*/
@NotNull
@Nullable
DataType<T> getSQLDataType();
/**