Package org.apache.commons.net.imap
Enum IMAP.IMAPState
- All Implemented Interfaces:
- Serializable,- Comparable<IMAP.IMAPState>
- Enclosing class:
- IMAP
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionA constant representing the "authenticated" state.A constant representing the state where the client is not yet connected to a server.A constant representing the "logout" state.A constant representing the "not authenticated" state.
- 
Method SummaryModifier and TypeMethodDescriptionstatic IMAP.IMAPStateReturns the enum constant of this type with the specified name.static IMAP.IMAPState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
DISCONNECTED_STATEA constant representing the state where the client is not yet connected to a server.
- 
NOT_AUTH_STATEA constant representing the "not authenticated" state.
- 
AUTH_STATEA constant representing the "authenticated" state.
- 
LOGOUT_STATEA constant representing the "logout" state.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-