Enum Class ClientControl.SessionEventStream.Event.Type
java.lang.Object
java.lang.Enum<ClientControl.SessionEventStream.Event.Type>
com.pushtechnology.diffusion.client.features.control.clients.ClientControl.SessionEventStream.Event.Type
- All Implemented Interfaces:
Serializable,Comparable<ClientControl.SessionEventStream.Event.Type>,Constable
- Enclosing interface:
- ClientControl.SessionEventStream.Event
public static enum ClientControl.SessionEventStream.Event.Type
extends Enum<ClientControl.SessionEventStream.Event.Type>
The event type.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe event indicates a change to the session properties of the identified session.The event indicates a change of state of the identified session, including the opening of a new session. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STATE
The event indicates a change of state of the identified session, including the opening of a new session. -
PROPERTIES
The event indicates a change to the session properties of the identified session.
-
-
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
-