public enum Nullability extends java.lang.Enum<Nullability>
DataType
.Enum Constant and Description |
---|
DEFAULT
Default behaviour for data types.
|
NOT_NULL
The data type is explicitly not nullable.
|
NULL
The data type is explicitly nullable.
|
Modifier and Type | Method and Description |
---|---|
boolean |
nullable()
Whether this nullability encodes an explicitly or implicitly nullable
type.
|
static Nullability |
of(boolean nullability)
Get the explicit
Nullability corresponding to a boolean value. |
static Nullability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Nullability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Nullability NULL
public static final Nullability NOT_NULL
public static final Nullability DEFAULT
The interpretation of this value depends on the context in which a
DataType
is used:
CREATE TABLE
: The data type is implicitly nullable (or
explicitly, if the underlying database does not support implicit
nullability or defaults to implicit non-nullability).ALTER TABLE .. ALTER COLUMN .. SET TYPE
: The data type's
nullability will not be modified by jOOQ (but it may well be modified by
the database, e.g. SQLDialect.MYSQL
or
SQLDialect.SQLSERVER
).public static Nullability[] values()
for (Nullability c : Nullability.values()) System.out.println(c);
public static Nullability valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static Nullability of(boolean nullability)
Nullability
corresponding to a boolean value.public boolean nullable()
Copyright © 2018. All Rights Reserved.