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