|
||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||
java.lang.Objectjava.lang.Enum<SyncError>
com.kii.cloud.filesync.SyncError
public enum SyncError
Abstracted reason of sync failure.
| Enum Constant Summary | |
|---|---|
NETWORK
Network error. |
|
OTHERS
Unknown cause, please contact with Kii Corp. |
|
SERVICE
Service unavailable. |
|
STORAGE
Something wrong on storage of local device. |
|
| Method Summary | |
|---|---|
static SyncError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static SyncError[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final SyncError NETWORK
public static final SyncError OTHERS
public static final SyncError SERVICE
public static final SyncError STORAGE
| Method Detail |
|---|
public static SyncError 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 name
java.lang.NullPointerException - if the argument is nullpublic static SyncError[] values()
for (SyncError c : SyncError.values()) System.out.println(c);
|
||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||