public enum PropertyAction extends Enum<PropertyAction>
| Enum Constant and Description |
|---|
PRESERVE
Preserve existing property value if one exists.
|
REPLACE
Replace existing property value if one exists.
|
| Modifier and Type | Method and Description |
|---|---|
static PropertyAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyAction REPLACE
public static final PropertyAction PRESERVE
public static PropertyAction[] values()
for (PropertyAction c : PropertyAction.values()) System.out.println(c);
public static PropertyAction 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 © 2014-2021 Real Logic Limited. All Rights Reserved.