public static enum AccessOptions.SetOptions.Propagation extends Enum<AccessOptions.SetOptions.Propagation>
Enum Constant and Description |
---|
PROPAGATE
Propagate the setting of values when encountering a collection or map value and set it on all collection or map
members.
|
SKIP
Skip the setting of values when encountering a collection or map value within the path to traverse.
|
Modifier and Type | Method and Description |
---|---|
static AccessOptions.SetOptions.Propagation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessOptions.SetOptions.Propagation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessOptions.SetOptions.Propagation SKIP
public static final AccessOptions.SetOptions.Propagation PROPAGATE
public static AccessOptions.SetOptions.Propagation[] values()
for (AccessOptions.SetOptions.Propagation c : AccessOptions.SetOptions.Propagation.values()) System.out.println(c);
public static AccessOptions.SetOptions.Propagation 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–2023 Pivotal Software, Inc.. All rights reserved.