public static enum ODistributedServerManager.DB_STATUS extends Enum<ODistributedServerManager.DB_STATUS>
Enum Constant and Description |
---|
BACKUP
The database is ONLINE, but is not involved in the quorum.
|
NOT_AVAILABLE
The database is not installed.
|
OFFLINE
The database has been put in OFFLINE status.
|
ONLINE
The database is ONLINE as fully operative.
|
SYNCHRONIZING
The database is in synchronization status.
|
Modifier and Type | Method and Description |
---|---|
static ODistributedServerManager.DB_STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ODistributedServerManager.DB_STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ODistributedServerManager.DB_STATUS NOT_AVAILABLE
public static final ODistributedServerManager.DB_STATUS OFFLINE
public static final ODistributedServerManager.DB_STATUS SYNCHRONIZING
public static final ODistributedServerManager.DB_STATUS ONLINE
public static final ODistributedServerManager.DB_STATUS BACKUP
public static ODistributedServerManager.DB_STATUS[] values()
for (ODistributedServerManager.DB_STATUS c : ODistributedServerManager.DB_STATUS.values()) System.out.println(c);
public static ODistributedServerManager.DB_STATUS 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 © 2009–2020 OrientDB. All rights reserved.