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
Subclasses with type arguments of type SocksAddressType in io.netty.handler.codec.socksFields in io.netty.handler.codec.socks declared as SocksAddressTypeModifier and TypeFieldDescriptionprivate final SocksAddressTypeSocksCmdRequest.addressTypeprivate SocksAddressTypeSocksCmdRequestDecoder.addressTypeprivate final SocksAddressTypeSocksCmdResponse.addressTypeprivate SocksAddressTypeSocksCmdResponseDecoder.addressTypeMethods in io.netty.handler.codec.socks that return SocksAddressTypeModifier and TypeMethodDescriptionSocksCmdRequest.addressType()Returns theSocksAddressTypeof thisSocksCmdRequestSocksCmdResponse.addressType()Returns theSocksAddressTypeof thisSocksCmdResponsestatic SocksAddressTypeSocksAddressType.fromByte(byte b) Deprecated.static SocksAddressTypeSocksAddressType.valueOf(byte b) Returns the enum constant of this type with the specified name.static SocksAddressTypeReturns 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.
SocksAddressType.valueOf(byte)instead.