Uses of Enum
io.netty.handler.codec.socks.SocksAddressType
Packages that use SocksAddressType
Package
Description
Encoder, decoder and their related message types for Socks.
-
Uses of SocksAddressType in io.netty.handler.codec.socks
Fields in io.netty.handler.codec.socks declared as SocksAddressTypeModifier and TypeFieldDescriptionprivate final SocksAddressType
SocksCmdRequest.addressType
private SocksAddressType
SocksCmdRequestDecoder.addressType
private final SocksAddressType
SocksCmdResponse.addressType
private SocksAddressType
SocksCmdResponseDecoder.addressType
Methods in io.netty.handler.codec.socks that return SocksAddressTypeModifier and TypeMethodDescriptionSocksCmdRequest.addressType()
Returns theSocksAddressType
of thisSocksCmdRequest
SocksCmdResponse.addressType()
Returns theSocksAddressType
of thisSocksCmdResponse
static SocksAddressType
SocksAddressType.fromByte
(byte b) Deprecated.static SocksAddressType
SocksAddressType.valueOf
(byte b) Returns the enum constant of this type with the specified name.static SocksAddressType
Returns the enum constant of this type with the specified name.static SocksAddressType[]
SocksAddressType.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 SocksAddressTypeModifierConstructorDescriptionSocksCmdRequest
(SocksCmdType cmdType, SocksAddressType addressType, String host, int port) SocksCmdResponse
(SocksCmdStatus cmdStatus, SocksAddressType addressType) SocksCmdResponse
(SocksCmdStatus cmdStatus, SocksAddressType addressType, String host, int port) Constructs new response and includes provided host and port as part of it.
valueOf(byte)
instead.