Uses of Class
io.netty.handler.codec.socks.SocksCmdType
-
Packages that use SocksCmdType Package Description io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks. -
-
Uses of SocksCmdType in io.netty.handler.codec.socks
Fields in io.netty.handler.codec.socks declared as SocksCmdType Modifier and Type Field Description private SocksCmdType
SocksCmdRequest. cmdType
private SocksCmdType
SocksCmdRequestDecoder. cmdType
Methods in io.netty.handler.codec.socks that return SocksCmdType Modifier and Type Method Description SocksCmdType
SocksCmdRequest. cmdType()
Returns theSocksCmdType
of thisSocksCmdRequest
static SocksCmdType
SocksCmdType. fromByte(byte b)
Deprecated.UsevalueOf(byte)
instead.static SocksCmdType
SocksCmdType. valueOf(byte b)
Returns the enum constant of this type with the specified name.static SocksCmdType
SocksCmdType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SocksCmdType[]
SocksCmdType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in io.netty.handler.codec.socks with parameters of type SocksCmdType Constructor Description SocksCmdRequest(SocksCmdType cmdType, SocksAddressType addressType, java.lang.String host, int port)
-