Enum Class KickEventType

java.lang.Object
java.lang.Enum<KickEventType>
com.uc4.communication.KickEventType
All Implemented Interfaces:
Serializable, Comparable<KickEventType>, Constable

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

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

      public static final KickEventType HOST_ASSIGNMENT_CHANGED
      host assignment has changed (has to be registered with Connection.login(int, String, String, String, char, String))
    • 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 Details

    • values

      public static KickEventType[] 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 KickEventType 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
    • get

      public static KickEventType get(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)