Enum ReplicationOperationPhase
java.lang.Object
java.lang.Enum<ReplicationOperationPhase>
org.nuiton.topia.replication.model.ReplicationOperationPhase
- All Implemented Interfaces:
Serializable,Comparable<ReplicationOperationPhase>,java.lang.constant.Constable
Une enumeration pour definir quand appliquer une operation.
L'ordre induit par cette enumeration sera utilisé pour trier les operations
a realiser sur chaque noeud de replication.
- Since:
- 2.2.0
- Author:
- Tony Chemit - chemit@codelutin.com
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ReplicationOperationPhaseReturns the enum constant of this type with the specified name.static ReplicationOperationPhase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
before
a appliquer avant la duplicate d'un noeud -
duplicate
pour dupliquer un noeud (cette phase ne doit etre utilise que sur l'operation de typeDuplicate -
after
a appliquer apres avoir duplique le noeud
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-