[jOOQ/jOOQ#6244] Add nullability annotations to jOOQ API
- Name::first and Name::last are nullable
This commit is contained in:
parent
2f4997c435
commit
34d479cd96
@ -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();
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user