Enum KickEventType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<KickEventType>

    public enum KickEventType
    extends java.lang.Enum<KickEventType>
    Represents a KickEventType of a KickEventType to distinguish which KickEvent is performed.
    • Enum Constant Detail

      • TREE_CHANGED

        public static final KickEventType TREE_CHANGED
        tree structure in AE has changed
      • HIGHEST_CALL_OPERATOR_CHANGED

        public static final KickEventType HIGHEST_CALL_OPERATOR_CHANGED
        notification was added or removed for the current user
      • ACTIVITY_LIST_CHANGED

        public static final KickEventType ACTIVITY_LIST_CHANGED
        activity list changed
      • PROCESSING_STOPPED

        public static final KickEventType PROCESSING_STOPPED
        client state has changed to stop
      • PROCESSING_STARTED

        public static final KickEventType PROCESSING_STARTED
        client state has changed to active
      • PROMPT_INPUT_REQUIRED

        public static final KickEventType PROMPT_INPUT_REQUIRED
        prompt values are required in order to a execute an object
      • SYSTEM_SETTINGS_CHANGED

        public static final KickEventType SYSTEM_SETTINGS_CHANGED
        Content of UC_SYSTEM_SETTINGS has changed.
      • KICK_UNDEFINED

        public static final KickEventType KICK_UNDEFINED
        undefined kick
    • Method Detail

      • values

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

        public static KickEventType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • get

        public static KickEventType get​(java.lang.String value)
        Converts a Kick type as String to a KickEventType.
        Parameters:
        value - Event type as String
        Returns:
        Returns the KickEventType to an passed value. In example: 'OFS' (value) ... TREE_CHANGED (KickEventType)