public static enum SocksMessage.CmdType extends java.lang.Enum<SocksMessage.CmdType>
| Modifier and Type | Field and Description |
|---|---|
private byte |
b |
| Modifier and Type | Method and Description |
|---|---|
static SocksMessage.CmdType |
fromByte(byte b) |
byte |
getByteValue() |
static SocksMessage.CmdType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SocksMessage.CmdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocksMessage.CmdType CONNECT
public static final SocksMessage.CmdType BIND
public static final SocksMessage.CmdType UDP
public static final SocksMessage.CmdType UNKNOWN
public static SocksMessage.CmdType[] values()
for (SocksMessage.CmdType c : SocksMessage.CmdType.values()) System.out.println(c);
public static SocksMessage.CmdType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static SocksMessage.CmdType fromByte(byte b)
public byte getByteValue()