Package org.apache.commons.net.imap
Enum IMAP.IMAPState
- java.lang.Object
-
- java.lang.Enum<IMAP.IMAPState>
-
- org.apache.commons.net.imap.IMAP.IMAPState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IMAP.IMAPState>
- Enclosing class:
- IMAP
public static enum IMAP.IMAPState extends java.lang.Enum<IMAP.IMAPState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH_STATE
A constant representing the "authenticated" state.DISCONNECTED_STATE
A constant representing the state where the client is not yet connected to a server.LOGOUT_STATE
A constant representing the "logout" state.NOT_AUTH_STATE
A constant representing the "not authenticated" state.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IMAP.IMAPState
valueOf(java.lang.String name)
Returns 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 Detail
-
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.
-
-
Method Detail
-
values
public static IMAP.IMAPState[] 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 (IMAP.IMAPState c : IMAP.IMAPState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IMAP.IMAPState 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 namejava.lang.NullPointerException
- if the argument is null
-
-