public static enum AccessOptions.SetOptions.SetNulls extends Enum<AccessOptions.SetOptions.SetNulls>
Enum Constant and Description |
---|
REJECT
Reject null values detected when traversing a path to eventually set the leaf property.
|
SKIP
Silently skip the attempt to set the value.
|
SKIP_AND_LOG
Skip setting the value but log an info message to leave a trace why the value wasn't actually set.
|
Modifier and Type | Method and Description |
---|---|
static AccessOptions.SetOptions.SetNulls |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessOptions.SetOptions.SetNulls[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessOptions.SetOptions.SetNulls REJECT
MappingException
being thrown in that case.public static final AccessOptions.SetOptions.SetNulls SKIP_AND_LOG
public static final AccessOptions.SetOptions.SetNulls SKIP
public static AccessOptions.SetOptions.SetNulls[] values()
for (AccessOptions.SetOptions.SetNulls c : AccessOptions.SetOptions.SetNulls.values()) System.out.println(c);
public static AccessOptions.SetOptions.SetNulls 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 © 2011–2021 Pivotal Software, Inc.. All rights reserved.