Enum Class IModelProcessingListener.Type
java.lang.Object
java.lang.Enum<IModelProcessingListener.Type>
net.ssehub.easy.basics.modelManagement.IModelProcessingListener.Type
- All Implemented Interfaces:
Serializable,Comparable<IModelProcessingListener.Type>,Constable
- Enclosing interface:
IModelProcessingListener<M extends IModel>
Processing types.
- Author:
- Holger Eichelberger
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionLonger running calculation on the model contents.Cleaning up a model.Model initialization phase in case that this is not already done byLOADING.Loading a model, i.e., parsing the model definition and turning it into the internal model implementation.Refreshing the model contents. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static IModelProcessingListener.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOADING
Loading a model, i.e., parsing the model definition and turning it into the internal model implementation. -
INITIALIZING
Model initialization phase in case that this is not already done byLOADING. -
REFRESHING
Refreshing the model contents. -
CALCULATING
Longer running calculation on the model contents. -
DISPOSING
Cleaning up a model.
-
-
Constructor Details
-
Type
private Type()
-
-
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
-