public static enum ValueProvider.Action extends java.lang.Enum<ValueProvider.Action>
| Enum Constant and Description |
|---|
ACTION_ADD_IF_EMPTY
Same as
ACTION_APPEND but only when no other values are provided by Oxygen. |
ACTION_APPEND
The returned values should be appended to the already existing ones.
|
ACTION_REPLACE
The returned values should replace any existing ones.
|
| Modifier and Type | Method and Description |
|---|---|
static ValueProvider.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueProvider.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueProvider.Action ACTION_REPLACE
public static final ValueProvider.Action ACTION_APPEND
public static final ValueProvider.Action ACTION_ADD_IF_EMPTY
ACTION_APPEND but only when no other values are provided by Oxygen.public static ValueProvider.Action[] values()
for (ValueProvider.Action c : ValueProvider.Action.values()) System.out.println(c);
public static ValueProvider.Action valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null© Copyright SyncRO Soft SRL 2002 - 2015. All rights reserved.