public enum ClientUpdateMode extends Enum<ClientUpdateMode>
AllowClientUpdates| Enum Constant and Description |
|---|
ALLOW
Always allow updating the property.
|
DENY
Never allow updating the property.
|
IF_TWO_WAY_BINDING
Allow updating the property if there is a corresponding two-way binding
in the template.
|
| Modifier and Type | Method and Description |
|---|---|
static ClientUpdateMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientUpdateMode ALLOW
public static final ClientUpdateMode DENY
public static final ClientUpdateMode IF_TWO_WAY_BINDING
public static ClientUpdateMode[] values()
for (ClientUpdateMode c : ClientUpdateMode.values()) System.out.println(c);
public static ClientUpdateMode 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 © 2025. All rights reserved.