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