public enum RoleDisasterRecovery extends Enum<RoleDisasterRecovery>
Enum Constant and Description |
---|
PRIMARY
Enum value Primary.
|
PRIMARY_NOT_REPLICATING
Enum value PrimaryNotReplicating.
|
SECONDARY
Enum value Secondary.
|
Modifier and Type | Method and Description |
---|---|
static RoleDisasterRecovery |
fromString(String value)
Parses a serialized value to a RoleDisasterRecovery instance.
|
String |
toString() |
static RoleDisasterRecovery |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RoleDisasterRecovery[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RoleDisasterRecovery PRIMARY
public static final RoleDisasterRecovery PRIMARY_NOT_REPLICATING
public static final RoleDisasterRecovery SECONDARY
public static RoleDisasterRecovery[] values()
for (RoleDisasterRecovery c : RoleDisasterRecovery.values()) System.out.println(c);
public static RoleDisasterRecovery 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 nullpublic static RoleDisasterRecovery fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<RoleDisasterRecovery>
Copyright © 2019. All rights reserved.