public enum SynchronizationType extends Enum<SynchronizationType>
Enum Constant and Description |
---|
CONTENT_UPDATE |
DELETE |
METADATA_UPDATE |
RENAME |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static SynchronizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynchronizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchronizationType UNKNOWN
public static final SynchronizationType CONTENT_UPDATE
public static final SynchronizationType METADATA_UPDATE
public static final SynchronizationType RENAME
public static final SynchronizationType DELETE
public static SynchronizationType[] values()
for (SynchronizationType c : SynchronizationType.values()) System.out.println(c);
public static SynchronizationType 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 © 2016. All Rights Reserved.