Enum Class MarkovEvaluationType

java.lang.Object
java.lang.Enum<MarkovEvaluationType>
org.palladiosimulator.reliability.MarkovEvaluationType
All Implemented Interfaces:
Serializable, Comparable<MarkovEvaluationType>, Constable

public enum MarkovEvaluationType extends Enum<MarkovEvaluationType>
Describes the granularity of distinction between failure types in the reliability analysis and simulation.
  • Enum Constant Details

    • CLASSES

      public static final MarkovEvaluationType CLASSES
      Rough distinction between software, hardware and network failure types. This setting induces a simplified reliability evaluation without failure recovery.
    • POINTSOFFAILURE

      public static final MarkovEvaluationType POINTSOFFAILURE
      Distinction between individual points of failure.
    • SINGLE

      public static final MarkovEvaluationType SINGLE
      No distinction between different failure types. This setting induces a simplified reliability evaluation without failure recovery.
    • TYPES

      public static final MarkovEvaluationType TYPES
      Distinction between user-defined failure types.
  • Method Details

    • values

      public static MarkovEvaluationType[] 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

      public static MarkovEvaluationType valueOf(String name)
      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 name
      NullPointerException - if the argument is null