public enum LoginSyncStatus extends java.lang.Enum<LoginSyncStatus>
Enum Constant and Description |
---|
BEGIN_SYNC
Syncing
|
NO_BEGIN
Waiting
|
SYNC_COMPLETED
Completed
|
Modifier and Type | Method and Description |
---|---|
static LoginSyncStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LoginSyncStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginSyncStatus NO_BEGIN
public static final LoginSyncStatus BEGIN_SYNC
public static final LoginSyncStatus SYNC_COMPLETED
public static LoginSyncStatus[] values()
for (LoginSyncStatus c : LoginSyncStatus.values()) System.out.println(c);
public static LoginSyncStatus 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