public static enum Attributes.UpdatePolicy extends Enum<Attributes.UpdatePolicy>
| Enum Constant and Description |
|---|
MERGE |
OVERWRITE |
PRESERVE |
REPLACE |
SUPPLEMENT |
| Modifier and Type | Method and Description |
|---|---|
static Attributes.UpdatePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Attributes.UpdatePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Attributes.UpdatePolicy SUPPLEMENT
public static final Attributes.UpdatePolicy MERGE
public static final Attributes.UpdatePolicy OVERWRITE
public static final Attributes.UpdatePolicy REPLACE
public static final Attributes.UpdatePolicy PRESERVE
public static Attributes.UpdatePolicy[] values()
for (Attributes.UpdatePolicy c : Attributes.UpdatePolicy.values()) System.out.println(c);
public static Attributes.UpdatePolicy 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 © 2021. All rights reserved.