Uses of Class
io.netty.handler.codec.haproxy.HAProxyTLV.Type
-
Packages that use HAProxyTLV.Type Package Description io.netty.handler.codec.haproxy Decodes an HAProxy proxy protocol header -
-
Uses of HAProxyTLV.Type in io.netty.handler.codec.haproxy
Fields in io.netty.handler.codec.haproxy declared as HAProxyTLV.Type Modifier and Type Field Description private HAProxyTLV.Type
HAProxyTLV. type
Methods in io.netty.handler.codec.haproxy that return HAProxyTLV.Type Modifier and Type Method Description HAProxyTLV.Type
HAProxyTLV. type()
Returns theHAProxyTLV.Type
of this TLVstatic HAProxyTLV.Type
HAProxyTLV.Type. typeForByteValue(byte byteValue)
Returns theHAProxyTLV.Type
for a specific byte value as defined in the PROXY protocol 1.5 specstatic HAProxyTLV.Type
HAProxyTLV.Type. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HAProxyTLV.Type[]
HAProxyTLV.Type. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty.handler.codec.haproxy with parameters of type HAProxyTLV.Type Modifier and Type Method Description static byte
HAProxyTLV.Type. byteValueForType(HAProxyTLV.Type type)
Returns the byte value for theHAProxyTLV.Type
as defined in the PROXY protocol 1.5 spec.Constructors in io.netty.handler.codec.haproxy with parameters of type HAProxyTLV.Type Constructor Description HAProxyTLV(HAProxyTLV.Type type, byte typeByteValue, ByteBuf content)
Creates a new HAProxyTLVHAProxyTLV(HAProxyTLV.Type type, ByteBuf content)
Creates a new HAProxyTLV
-