public enum PcepSyncStatus extends Enum<PcepSyncStatus>
| Enum Constant and Description |
|---|
IN_SYNC
Specifies that the DB state is currently undergoing synchronization.
|
NOT_SYNCED
Specifies that the DB state is not synchronized.
|
SYNCED
Specifies that the DB state synchronization is completed.
|
| Modifier and Type | Method and Description |
|---|---|
static PcepSyncStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PcepSyncStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PcepSyncStatus NOT_SYNCED
public static final PcepSyncStatus IN_SYNC
public static final PcepSyncStatus SYNCED
public static PcepSyncStatus[] values()
for (PcepSyncStatus c : PcepSyncStatus.values()) System.out.println(c);
public static PcepSyncStatus 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 null