[jOOQ/jOOQ#8903] Add Support annotation also to Nullability enum

This commit is contained in:
Lukas Eder 2019-07-04 16:49:18 +02:00
parent 58954539cb
commit ab676159fa

View File

@ -47,11 +47,13 @@ public enum Nullability {
/**
* The data type is explicitly nullable.
*/
@Support
NULL,
/**
* The data type is explicitly not nullable.
*/
@Support
NOT_NULL,
/**
@ -69,6 +71,7 @@ public enum Nullability {
* {@link SQLDialect#SQLSERVER}).</li>
* </ul>
*/
@Support
DEFAULT;
/**