public enum ConflictResolution extends java.lang.Enum<ConflictResolution>
| Enum Constant and Description |
|---|
ALWAYS_OVERWRITE
Local property changes overwrite server-side changes.
|
AUTO_RESOLVE
Local property changes are applied to the server unless the server-side copy is more recent than the local copy.
|
NEVER_OVERWRITE
Local property changes are discarded.
|
| Modifier and Type | Method and Description |
|---|---|
static ConflictResolution |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConflictResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictResolution NEVER_OVERWRITE
public static final ConflictResolution AUTO_RESOLVE
public static final ConflictResolution ALWAYS_OVERWRITE
public static ConflictResolution[] values()
for (ConflictResolution c : ConflictResolution.values()) System.out.println(c);
public static ConflictResolution 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