Package io.netty.handler.codec.haproxy
Enum HAProxyTLV.Type
- java.lang.Object
-
- java.lang.Enum<HAProxyTLV.Type>
-
- io.netty.handler.codec.haproxy.HAProxyTLV.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HAProxyTLV.Type>
- Enclosing class:
- HAProxyTLV
public static enum HAProxyTLV.Type extends java.lang.Enum<HAProxyTLV.Type>
The registered types a TLV can have regarding the PROXY protocol 1.5 spec
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OTHER
A TLV type that is not officially defined in the spec.PP2_TYPE_ALPN
PP2_TYPE_AUTHORITY
PP2_TYPE_NETNS
PP2_TYPE_SSL
PP2_TYPE_SSL_CN
PP2_TYPE_SSL_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static byte
byteValueForType(HAProxyTLV.Type type)
Returns the byte value for theHAProxyTLV.Type
as defined in the PROXY protocol 1.5 spec.static HAProxyTLV.Type
typeForByteValue(byte byteValue)
Returns theHAProxyTLV.Type
for a specific byte value as defined in the PROXY protocol 1.5 specstatic HAProxyTLV.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HAProxyTLV.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PP2_TYPE_ALPN
public static final HAProxyTLV.Type PP2_TYPE_ALPN
-
PP2_TYPE_AUTHORITY
public static final HAProxyTLV.Type PP2_TYPE_AUTHORITY
-
PP2_TYPE_SSL
public static final HAProxyTLV.Type PP2_TYPE_SSL
-
PP2_TYPE_SSL_VERSION
public static final HAProxyTLV.Type PP2_TYPE_SSL_VERSION
-
PP2_TYPE_SSL_CN
public static final HAProxyTLV.Type PP2_TYPE_SSL_CN
-
PP2_TYPE_NETNS
public static final HAProxyTLV.Type PP2_TYPE_NETNS
-
OTHER
public static final HAProxyTLV.Type OTHER
A TLV type that is not officially defined in the spec. May be used for nonstandard TLVs
-
-
Method Detail
-
values
public static HAProxyTLV.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HAProxyTLV.Type c : HAProxyTLV.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HAProxyTLV.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
typeForByteValue
public static HAProxyTLV.Type typeForByteValue(byte byteValue)
Returns theHAProxyTLV.Type
for a specific byte value as defined in the PROXY protocol 1.5 specIf the byte value is not an official one, it will return
OTHER
.- Parameters:
byteValue
- the byte for a type- Returns:
- the
HAProxyTLV.Type
of a TLV
-
byteValueForType
public static byte byteValueForType(HAProxyTLV.Type type)
Returns the byte value for theHAProxyTLV.Type
as defined in the PROXY protocol 1.5 spec.- Parameters:
type
- theHAProxyTLV.Type
- Returns:
- the byte value of the
HAProxyTLV.Type
.
-
-