public static enum RelationalConstants.Nullable extends Enum<RelationalConstants.Nullable>
Enum Constant and Description |
---|
NO_NULLS |
NULLABLE |
NULLABLE_UNKNOWN |
Modifier and Type | Field and Description |
---|---|
static RelationalConstants.Nullable |
DEFAULT_VALUE |
Modifier and Type | Method and Description |
---|---|
static RelationalConstants.Nullable |
fromValue(String value) |
String |
toValue() |
static RelationalConstants.Nullable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RelationalConstants.Nullable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelationalConstants.Nullable NO_NULLS
public static final RelationalConstants.Nullable NULLABLE
public static final RelationalConstants.Nullable NULLABLE_UNKNOWN
public static final RelationalConstants.Nullable DEFAULT_VALUE
public static RelationalConstants.Nullable[] values()
for (RelationalConstants.Nullable c : RelationalConstants.Nullable.values()) System.out.println(c);
public static RelationalConstants.Nullable valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static RelationalConstants.Nullable fromValue(String value)
value
- the value whose Nullable
is being requested (can be empty)Nullable
or the default value if not foundDEFAULT_VALUE
public String toValue()
Copyright © 2013–2019. All rights reserved.