Package org.eclipse.epsilon.eugenia
Enum EugeniaActionDelegateStep
- java.lang.Object
-
- java.lang.Enum<EugeniaActionDelegateStep>
-
- org.eclipse.epsilon.eugenia.EugeniaActionDelegateStep
-
- All Implemented Interfaces:
Serializable
,Comparable<EugeniaActionDelegateStep>
public enum EugeniaActionDelegateStep extends Enum<EugeniaActionDelegateStep>
Names of the different steps in the Eugenia workflow. Useful inEugeniaWorkflowDelegate.setLastStep(EugeniaActionDelegateStep)
. Please note that these enum values must be kept in the same order as the steps in Eugenia. We use lowercase names instead of the usual uppercase names so the Ant tasks look nicer.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description annotate
applypatches
clean
ecore
emfcode
generatepatches
genmodel
gmf
gmfcode
gmfgen
unapplypatches
validateforgenmodel
validateforgmf
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EugeniaActionDelegateStep
valueOf(String name)
Returns the enum constant of this type with the specified name.static EugeniaActionDelegateStep[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
clean
public static final EugeniaActionDelegateStep clean
-
ecore
public static final EugeniaActionDelegateStep ecore
-
annotate
public static final EugeniaActionDelegateStep annotate
-
validateforgenmodel
public static final EugeniaActionDelegateStep validateforgenmodel
-
validateforgmf
public static final EugeniaActionDelegateStep validateforgmf
-
genmodel
public static final EugeniaActionDelegateStep genmodel
-
gmf
public static final EugeniaActionDelegateStep gmf
-
gmfgen
public static final EugeniaActionDelegateStep gmfgen
-
emfcode
public static final EugeniaActionDelegateStep emfcode
-
gmfcode
public static final EugeniaActionDelegateStep gmfcode
-
generatepatches
public static final EugeniaActionDelegateStep generatepatches
-
applypatches
public static final EugeniaActionDelegateStep applypatches
-
unapplypatches
public static final EugeniaActionDelegateStep unapplypatches
-
-
Method Detail
-
values
public static EugeniaActionDelegateStep[] 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 (EugeniaActionDelegateStep c : EugeniaActionDelegateStep.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EugeniaActionDelegateStep 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
-
-