Enum EventResult

  • All Implemented Interfaces:
    Serializable, Comparable<EventResult>

    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 Detail

      • 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 Detail

      • values

        public static EventResult[] 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 (EventResult c : EventResult.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EventResult 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 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.