public static enum Grid.NestedNullBehavior extends Enum<Grid.NestedNullBehavior>
null values in the property chain| Enum Constant and Description |
|---|
ALLOW_NULLS
silently ignore any exceptions caused by nested
null
values |
THROW
throw a NullPointerException if there is a nested
null
value |
| Modifier and Type | Method and Description |
|---|---|
static Grid.NestedNullBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Grid.NestedNullBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Grid.NestedNullBehavior THROW
null
valuepublic static final Grid.NestedNullBehavior ALLOW_NULLS
null
valuespublic static Grid.NestedNullBehavior[] values()
for (Grid.NestedNullBehavior c : Grid.NestedNullBehavior.values()) System.out.println(c);
public static Grid.NestedNullBehavior 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 nullCopyright © 2025. All rights reserved.