Enum IoFilterEvents
- All Implemented Interfaces:
Serializable, Comparable<IoFilterEvents>
Defines all possible MINA
IoFilter events for use in IoFilterTransition
annotations.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe wildcard eventThe Close eventThe Exception Caught eventThe InputClosed eventThe Message Received eventThe Message Sent eventThe Session Closed eventThe Session Created eventThe Session Idle eventThe Session Opened eventThe Set Traffic Mask eventThe Write event -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiontoString()static IoFilterEventsReturns the enum constant of this type with the specified name.static IoFilterEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ANY
The wildcard event -
SESSION_CREATED
The Session Created event -
SESSION_OPENED
The Session Opened event -
SESSION_CLOSED
The Session Closed event -
SESSION_IDLE
The Session Idle event -
MESSAGE_RECEIVED
The Message Received event -
MESSAGE_SENT
The Message Sent event -
EXCEPTION_CAUGHT
The Exception Caught event -
CLOSE
The Close event -
WRITE
The Write event -
INPUT_CLOSED
The InputClosed event -
SET_TRAFFIC_MASK
The Set Traffic Mask event
-
-
Field Details
-
value
-
-
Constructor Details
-
IoFilterEvents
-
-
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
-
toString
- Overrides:
toStringin classEnum<IoFilterEvents>
-