public static enum HAProxyProxiedProtocol.TransportProtocol extends java.lang.Enum<HAProxyProxiedProtocol.TransportProtocol>
Enum Constant and Description |
---|
DGRAM
DGRAM传输协议表示为UDP连接转发的连接。
|
STREAM
STREAM传输协议表示为TCP连接转发的连接。
|
UNSPEC
UNSPEC传输协议代表为未知协议转发的连接。
|
Modifier and Type | Method and Description |
---|---|
byte |
byteValue()
返回此传输协议的字节值。
|
static HAProxyProxiedProtocol.TransportProtocol |
valueOf(byte tpafByte)
返回由指定字节的最低4位表示的 HAProxyProxiedProtocol.TransportProtocol 。
|
static HAProxyProxiedProtocol.TransportProtocol |
valueOf(java.lang.String name)
以指定名称返回此类型的枚举常量。
|
static HAProxyProxiedProtocol.TransportProtocol[] |
values()
按照声明的顺序返回包含此枚举类型常量的数组。
|
public static final HAProxyProxiedProtocol.TransportProtocol UNSPEC
public static final HAProxyProxiedProtocol.TransportProtocol STREAM
public static final HAProxyProxiedProtocol.TransportProtocol DGRAM
public static HAProxyProxiedProtocol.TransportProtocol[] values()
for (HAProxyProxiedProtocol.TransportProtocol c : HAProxyProxiedProtocol.TransportProtocol.values())
System.out.println(c);
public static HAProxyProxiedProtocol.TransportProtocol valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
java.lang.NullPointerException
- 如果参数为null
public static HAProxyProxiedProtocol.TransportProtocol valueOf(byte tpafByte)
HAProxyProxiedProtocol.TransportProtocol
。
tpafByte
- 传输协议和地址族字节
public byte byteValue()
Copyright © 2008–2018 The Netty Project. All rights reserved.