public enum SyncStatus extends Enum<SyncStatus>
Enum Constant and Description |
---|
COMPLETE
A sync is finished with no errors
|
COMPLETE_ERROR
A sync finished with at least 1 error
|
IN_PROGRESS
A sync is in progress
|
WAITING
A sync has been requested but has not yet started
|
Modifier and Type | Method and Description |
---|---|
static SyncStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SyncStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyncStatus WAITING
public static final SyncStatus IN_PROGRESS
public static final SyncStatus COMPLETE
public static final SyncStatus COMPLETE_ERROR
public static SyncStatus[] values()
for (SyncStatus c : SyncStatus.values()) System.out.println(c);
public static SyncStatus 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 © 2005–2017 Alfresco Software. All rights reserved.