Enum Class ImpactAnalysisFailureType
java.lang.Object
java.lang.Enum<ImpactAnalysisFailureType>
org.palladiosimulator.reliability.solver.reporting.ImpactAnalysisFailureType
- All Implemented Interfaces:
Serializable
,Comparable<ImpactAnalysisFailureType>
,Constable
Enumeration describing the type of entities (e.g. component's ID, a component's interface ID, a
component's signature ID) that are grouped together for creating a Markov reporting.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionGroup together components' internal actions.Group together components' service operations (signatures).Group together components' services (interfaces).Group together external services' operations (signatures).Group together external services (roles and interfaces). -
Method Summary
Modifier and TypeMethodDescriptionstatic ImpactAnalysisFailureType
Returns the enum constant of this class with the specified name.static ImpactAnalysisFailureType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COMPONENTS_INTERNAL_ACTIONS
Group together components' internal actions. -
COMPONENTS_SERVICE_OPERATIONS
Group together components' service operations (signatures). -
COMPONENTS_SERVICES
Group together components' services (interfaces). -
EXTERNAL_SERVICE_OPERATIONS
Group together external services' operations (signatures). -
EXTERNAL_SERVICES
Group together external services (roles and interfaces).
-
-
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
-