Enum IMAP.IMAPState

java.lang.Object
java.lang.Enum<IMAP.IMAPState>
org.apache.commons.net.imap.IMAP.IMAPState
All Implemented Interfaces:
Serializable, Comparable<IMAP.IMAPState>
Enclosing class:
IMAP

public static enum IMAP.IMAPState extends Enum<IMAP.IMAPState>
  • Enum Constant Details

    • DISCONNECTED_STATE

      public static final IMAP.IMAPState DISCONNECTED_STATE
      A constant representing the state where the client is not yet connected to a server.
    • NOT_AUTH_STATE

      public static final IMAP.IMAPState NOT_AUTH_STATE
      A constant representing the "not authenticated" state.
    • AUTH_STATE

      public static final IMAP.IMAPState AUTH_STATE
      A constant representing the "authenticated" state.
    • LOGOUT_STATE

      public static final IMAP.IMAPState LOGOUT_STATE
      A constant representing the "logout" state.
  • Constructor Details

    • IMAPState

      private IMAPState()
  • Method Details

    • values

      public static IMAP.IMAPState[] 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

      public static IMAP.IMAPState valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null