public static enum DynamicValue.UpdatePolicy extends Enum<DynamicValue.UpdatePolicy>
Enum Constant and Description |
---|
EXPLCIT
New values or not applied, but stored in the newValue property.
|
IMMEDIATE
New values are applied immedately and registered listeners are informed about the change.
|
LOG_AND_DISCARD
Changes are logged before the are discarded.
|
NEVER
New values are always immedately discarded.
|
Modifier and Type | Method and Description |
---|---|
static DynamicValue.UpdatePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicValue.UpdatePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicValue.UpdatePolicy IMMEDIATE
public static final DynamicValue.UpdatePolicy EXPLCIT
public static final DynamicValue.UpdatePolicy NEVER
public static final DynamicValue.UpdatePolicy LOG_AND_DISCARD
public static DynamicValue.UpdatePolicy[] values()
for (DynamicValue.UpdatePolicy c : DynamicValue.UpdatePolicy.values()) System.out.println(c);
public static DynamicValue.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 © 2014–2015 Apache Software Foundation. All rights reserved.