public static enum AutoBinding.UpdateStrategy extends java.lang.Enum<AutoBinding.UpdateStrategy>
AutoBinding
. See AutoBinding's
class level
documentation for complete
details on the sync behavior for each possible update strategy.Enum Constant and Description |
---|
READ
An update strategy where the
AutoBinding tries to keep the target
in sync with the source. |
READ_ONCE
An update strategy where the
AutoBinding tries to sync the
target from the source only once, at bind time. |
READ_WRITE
An update strategy where the
AutoBinding tries to keep both the
source and target in sync with each other. |
Modifier and Type | Method and Description |
---|---|
static AutoBinding.UpdateStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoBinding.UpdateStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoBinding.UpdateStrategy READ_ONCE
AutoBinding
tries to sync the
target from the source only once, at bind time.public static final AutoBinding.UpdateStrategy READ
AutoBinding
tries to keep the target
in sync with the source.public static final AutoBinding.UpdateStrategy READ_WRITE
AutoBinding
tries to keep both the
source and target in sync with each other.public static AutoBinding.UpdateStrategy[] values()
for (AutoBinding.UpdateStrategy c : AutoBinding.UpdateStrategy.values()) System.out.println(c);
public static AutoBinding.UpdateStrategy 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