Enum SharedNothingBackupQuorum.BACKUP_ACTIVATION
- java.lang.Object
-
- java.lang.Enum<SharedNothingBackupQuorum.BACKUP_ACTIVATION>
-
- org.apache.activemq.artemis.core.server.cluster.qourum.SharedNothingBackupQuorum.BACKUP_ACTIVATION
-
- All Implemented Interfaces:
Serializable,Comparable<SharedNothingBackupQuorum.BACKUP_ACTIVATION>
- Enclosing class:
- SharedNothingBackupQuorum
public static enum SharedNothingBackupQuorum.BACKUP_ACTIVATION extends Enum<SharedNothingBackupQuorum.BACKUP_ACTIVATION>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADY_REPLICATINGFAIL_OVERFAILURE_REPLICATINGFAILURE_RETRYSTOP
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SharedNothingBackupQuorum.BACKUP_ACTIVATIONvalueOf(String name)Returns the enum constant of this type with the specified name.static SharedNothingBackupQuorum.BACKUP_ACTIVATION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAIL_OVER
public static final SharedNothingBackupQuorum.BACKUP_ACTIVATION FAIL_OVER
-
FAILURE_RETRY
public static final SharedNothingBackupQuorum.BACKUP_ACTIVATION FAILURE_RETRY
-
FAILURE_REPLICATING
public static final SharedNothingBackupQuorum.BACKUP_ACTIVATION FAILURE_REPLICATING
-
ALREADY_REPLICATING
public static final SharedNothingBackupQuorum.BACKUP_ACTIVATION ALREADY_REPLICATING
-
STOP
public static final SharedNothingBackupQuorum.BACKUP_ACTIVATION STOP
-
-
Method Detail
-
values
public static SharedNothingBackupQuorum.BACKUP_ACTIVATION[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SharedNothingBackupQuorum.BACKUP_ACTIVATION c : SharedNothingBackupQuorum.BACKUP_ACTIVATION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SharedNothingBackupQuorum.BACKUP_ACTIVATION valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-