public enum SyncOperationType extends java.lang.Enum<SyncOperationType>
| Enum Constant and Description |
|---|
CREATE
The Sync Operation Type that indicates that a new entry was created.
|
DELETE
The Sync Operation Type that indicates that an entry was deleted.
|
MODIFY
The Sync Operation Type that indicates that an entry was modified or
renamed.
|
RESYNC
The Sync Operation Type that indicates that an entry is being
resynchronized as part of a 'resync' operation.
|
| Modifier and Type | Method and Description |
|---|---|
static SyncOperationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SyncOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncOperationType CREATE
public static final SyncOperationType DELETE
public static final SyncOperationType MODIFY
public static final SyncOperationType RESYNC
public static SyncOperationType[] values()
for (SyncOperationType c : SyncOperationType.values()) System.out.println(c);
public static SyncOperationType 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