Enum IoSessionEventType
- All Implemented Interfaces:
Serializable, Comparable<IoSessionEventType>
IoSessionEventType.java - Enumerates session event types.
- Since:
- MINA 2.0.0-M3
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetId()toString()static IoSessionEventTypeReturns the enum constant of this type with the specified name.static IoSessionEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CREATED
Session created -
OPENED
Session opened -
IDLE
Session Idling -
CLOSED
Session closed
-
-
Field Details
-
id
private final int idThe event type id.
-
-
Constructor Details
-
IoSessionEventType
private IoSessionEventType(int id)
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-
getId
public int getId()- Returns:
- the event id
-
toString
- Overrides:
toStringin classEnum<IoSessionEventType>
-