Package com.uc4.communication
Enum Class KickEventType
- All Implemented Interfaces:
Serializable
,Comparable<KickEventType>
,Constable
Represents a KickEventType of a
KickEventType
to distinguish which KickEvent is performed.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionactivity list changednotification was added or removed for the current userhost assignment has changed (has to be registered withConnection.login(int, String, String, String, char, String)
)undefined kickclient state has changed to activeclient state has changed to stopprompt values are required in order to a execute an objectContent of UC_SYSTEM_SETTINGS has changed.tree structure in AE has changed -
Method Summary
Modifier and TypeMethodDescriptionstatic KickEventType
Converts a Kick type as String to a KickEventType.static KickEventType
Returns the enum constant of this class with the specified name.static KickEventType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TREE_CHANGED
tree structure in AE has changed -
HIGHEST_CALL_OPERATOR_CHANGED
notification was added or removed for the current user -
ACTIVITY_LIST_CHANGED
activity list changed -
PROCESSING_STOPPED
client state has changed to stop -
PROCESSING_STARTED
client state has changed to active -
PROMPT_INPUT_REQUIRED
prompt values are required in order to a execute an object -
HOST_ASSIGNMENT_CHANGED
host assignment has changed (has to be registered withConnection.login(int, String, String, String, char, String)
) -
SYSTEM_SETTINGS_CHANGED
Content of UC_SYSTEM_SETTINGS has changed. -
KICK_UNDEFINED
undefined kick
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
get
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)
-