Enum IoEventType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<IoEventType>

    public enum IoEventType
    extends java.lang.Enum<IoEventType>
    An Enum that represents the type of I/O events and requests. Most users won't need to use this class. It is usually used by internal components to store I/O events.
    Author:
    Apache MINA Project
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static IoEventType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static IoEventType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • SESSION_CREATED

        public static final IoEventType SESSION_CREATED
        The session has been created
      • SESSION_OPENED

        public static final IoEventType SESSION_OPENED
        The session has been opened
      • SESSION_CLOSED

        public static final IoEventType SESSION_CLOSED
        The session has been closed
      • MESSAGE_RECEIVED

        public static final IoEventType MESSAGE_RECEIVED
        A message has been received
      • MESSAGE_SENT

        public static final IoEventType MESSAGE_SENT
        A message has been sent
      • SESSION_IDLE

        public static final IoEventType SESSION_IDLE
        The session is idle
      • EXCEPTION_CAUGHT

        public static final IoEventType EXCEPTION_CAUGHT
        An exception has been caught
      • WRITE

        public static final IoEventType WRITE
        A write has pccired
      • CLOSE

        public static final IoEventType CLOSE
        A close has occured
    • Method Detail

      • values

        public static IoEventType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (IoEventType c : IoEventType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static IoEventType valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null