public static enum HAProxyTLV.Type extends java.lang.Enum<HAProxyTLV.Type>
Enum Constant and Description |
---|
OTHER
规范中未正式定义的TLV类型。
|
PP2_TYPE_ALPN |
PP2_TYPE_AUTHORITY |
PP2_TYPE_NETNS |
PP2_TYPE_SSL |
PP2_TYPE_SSL_CN |
PP2_TYPE_SSL_VERSION |
Modifier and Type | Method and Description |
---|---|
static HAProxyTLV.Type |
typeForByteValue(byte byteValue)
按照PROXY协议1.5规范中的定义,返回 HAProxyTLV.Type 的特定字节值。如果字节值不是官方字节值,则返回OTHER 。
|
static HAProxyTLV.Type |
valueOf(java.lang.String name)
以指定名称返回此类型的枚举常量。
|
static HAProxyTLV.Type[] |
values()
按照声明的顺序返回包含此枚举类型常量的数组。
|
public static final HAProxyTLV.Type PP2_TYPE_ALPN
public static final HAProxyTLV.Type PP2_TYPE_AUTHORITY
public static final HAProxyTLV.Type PP2_TYPE_SSL
public static final HAProxyTLV.Type PP2_TYPE_SSL_VERSION
public static final HAProxyTLV.Type PP2_TYPE_SSL_CN
public static final HAProxyTLV.Type PP2_TYPE_NETNS
public static final HAProxyTLV.Type OTHER
public static HAProxyTLV.Type[] values()
for (HAProxyTLV.Type c : HAProxyTLV.Type.values())
System.out.println(c);
public static HAProxyTLV.Type valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
java.lang.NullPointerException
- 如果参数为空
public static HAProxyTLV.Type typeForByteValue(byte byteValue)
HAProxyTLV.Type
如果字节值不是正式的,它将返回OTHER
。
byteValue
- 类型的字节
HAProxyTLV.Type
Copyright © 2008–2018 The Netty Project. All rights reserved.