public static enum ObjectsExcerpts.Nullability extends java.lang.Enum<ObjectsExcerpts.Nullability>
| Enum Constant and Description |
|---|
NOT_NULLABLE |
NULLABLE |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isNullable() |
static ObjectsExcerpts.Nullability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectsExcerpts.Nullability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectsExcerpts.Nullability NULLABLE
public static final ObjectsExcerpts.Nullability NOT_NULLABLE
public static ObjectsExcerpts.Nullability[] values()
for (ObjectsExcerpts.Nullability c : ObjectsExcerpts.Nullability.values()) System.out.println(c);
public static ObjectsExcerpts.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 boolean isNullable()