Enum Class SplitBrainProtectionOn
- All Implemented Interfaces:
Serializable
,Comparable<SplitBrainProtectionOn>
,Constable
Represents a cluster split brain protection type
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionOnly read operations will participate in a split brain protection.Both read and write operations will participate in a split brain protection.Only write operations will participate in a split brain protection. -
Method Summary
Modifier and TypeMethodDescriptionstatic SplitBrainProtectionOn
Returns the enum constant of this class with the specified name.static SplitBrainProtectionOn[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
READ
Only read operations will participate in a split brain protection. -
WRITE
Only write operations will participate in a split brain protection. -
READ_WRITE
Both read and write operations will participate in a split brain protection.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-