Enum EventAction

    • Enum Constant Detail

      • EVENT_CLICKED

        public static final EventAction EVENT_CLICKED
        Notifies that the user has clicked a previously seen event.
      • EVENT_CONVERTED

        public static final EventAction EVENT_CONVERTED
        Notifies that a previously seen and clicked event has been converted.
    • Method Detail

      • values

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

        public static EventAction 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