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

- Name::first and Name::last are nullable
This commit is contained in:
Lukas Eder 2020-06-19 12:11:40 +02:00
parent 2f4997c435
commit 34d479cd96

View File

@ -135,13 +135,13 @@ public interface Name extends QueryPart, Comparable<Name> {
/**
* Get the first segment of the qualified name (usually a {@link Catalog} or {@link Schema} name).
*/
@NotNull
@Nullable
String first();
/**
* Get the last segment of the qualified name (usually a {@link Table}, {@link Field}, or {@link Parameter} name).
*/
@NotNull
@Nullable
String last();
/**