public enum SocksSubnegotiationVersion extends java.lang.Enum<SocksSubnegotiationVersion>
Enum Constant and Description |
---|
AUTH_PASSWORD |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
byte |
byteValue() |
static SocksSubnegotiationVersion |
fromByte(byte b)
已过时。
改为使用
valueOf(byte) 。
|
static SocksSubnegotiationVersion |
valueOf(byte b) |
static SocksSubnegotiationVersion |
valueOf(java.lang.String name)
以指定名称返回此类型的枚举常量。
|
static SocksSubnegotiationVersion[] |
values()
按照声明的顺序返回包含此枚举类型常量的数组。
|
public static final SocksSubnegotiationVersion AUTH_PASSWORD
public static final SocksSubnegotiationVersion UNKNOWN
public static SocksSubnegotiationVersion[] values()
for (SocksSubnegotiationVersion c : SocksSubnegotiationVersion.values())
System.out.println(c);
public static SocksSubnegotiationVersion valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
java.lang.NullPointerException
- 如果参数为null
@Deprecated public static SocksSubnegotiationVersion fromByte(byte b)
valueOf(byte)
instead.
public static SocksSubnegotiationVersion valueOf(byte b)
public byte byteValue()
Copyright © 2008–2018 The Netty Project. All rights reserved.