Package zmq.io.net.tcp
Enum SocksConnecter.Status
- java.lang.Object
-
- java.lang.Enum<SocksConnecter.Status>
-
- zmq.io.net.tcp.SocksConnecter.Status
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SocksConnecter.Status>
- Enclosing class:
- SocksConnecter
private static enum SocksConnecter.Status extends java.lang.Enum<SocksConnecter.Status>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SENDING_GREETING
SENDING_REQUEST
UNPLUGGED
WAITING_FOR_CHOICE
WAITING_FOR_PROXY_CONNECTION
WAITING_FOR_RECONNECT_TIME
WAITING_FOR_RESPONSE
-
Constructor Summary
Constructors Modifier Constructor Description private
Status()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SocksConnecter.Status
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SocksConnecter.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNPLUGGED
public static final SocksConnecter.Status UNPLUGGED
-
WAITING_FOR_RECONNECT_TIME
public static final SocksConnecter.Status WAITING_FOR_RECONNECT_TIME
-
WAITING_FOR_PROXY_CONNECTION
public static final SocksConnecter.Status WAITING_FOR_PROXY_CONNECTION
-
SENDING_GREETING
public static final SocksConnecter.Status SENDING_GREETING
-
WAITING_FOR_CHOICE
public static final SocksConnecter.Status WAITING_FOR_CHOICE
-
SENDING_REQUEST
public static final SocksConnecter.Status SENDING_REQUEST
-
WAITING_FOR_RESPONSE
public static final SocksConnecter.Status WAITING_FOR_RESPONSE
-
-
Method Detail
-
values
public static SocksConnecter.Status[] 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 (SocksConnecter.Status c : SocksConnecter.Status.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SocksConnecter.Status 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
-
-