java.lang.Object
java.lang.Enum<EventResult>
org.palladiosimulator.simulizar.interpreter.listener.EventResult
All Implemented Interfaces:
Serializable, Comparable<EventResult>, Constable

public enum EventResult extends Enum<EventResult>
Enum to represent possible results of an event (e.g., a reconfiguration) that has occurred. Currently supported are: SUCCESS and FAILURE.
  • Enum Constant Details

    • SUCCESS

      public static final EventResult SUCCESS
      Indicates a successful event.
    • FAILURE

      public static final EventResult FAILURE
      Indicates an event that did not terminate as expected.
  • Method Details

    • values

      public static EventResult[] 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 EventResult 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
    • fromBoolean

      public static EventResult fromBoolean(boolean result)
      Gets the EventResult that corresponds to the given boolean value.
      Parameters:
      result - A boolean value that denotes an event result.
      Returns:
      SUCCESS in case true was passed, FAILURE otherwise.