Uses of Class
io.netty.handler.codec.socks.SocksAuthScheme
-
Packages that use SocksAuthScheme Package Description io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks. -
-
Uses of SocksAuthScheme in io.netty.handler.codec.socks
Fields in io.netty.handler.codec.socks declared as SocksAuthScheme Modifier and Type Field Description private SocksAuthScheme
SocksInitResponse. authScheme
Fields in io.netty.handler.codec.socks with type parameters of type SocksAuthScheme Modifier and Type Field Description private java.util.List<SocksAuthScheme>
SocksInitRequest. authSchemes
Methods in io.netty.handler.codec.socks that return SocksAuthScheme Modifier and Type Method Description SocksAuthScheme
SocksInitResponse. authScheme()
Returns theSocksAuthScheme
of thisSocksInitResponse
static SocksAuthScheme
SocksAuthScheme. fromByte(byte b)
Deprecated.UsevalueOf(byte)
instead.static SocksAuthScheme
SocksAuthScheme. valueOf(byte b)
Returns the enum constant of this type with the specified name.static SocksAuthScheme
SocksAuthScheme. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SocksAuthScheme[]
SocksAuthScheme. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.socks that return types with arguments of type SocksAuthScheme Modifier and Type Method Description java.util.List<SocksAuthScheme>
SocksInitRequest. authSchemes()
Returns the List<SocksAuthScheme
> of thisSocksInitRequest
Constructors in io.netty.handler.codec.socks with parameters of type SocksAuthScheme Constructor Description SocksInitResponse(SocksAuthScheme authScheme)
Constructor parameters in io.netty.handler.codec.socks with type arguments of type SocksAuthScheme Constructor Description SocksInitRequest(java.util.List<SocksAuthScheme> authSchemes)
-