public enum InternetProtocolFamily extends java.lang.Enum<InternetProtocolFamily>
DatagramChannel
Modifier and Type | Method and Description |
---|---|
int |
addressNumber()
返回家庭的
address number 。
|
java.lang.Class<? extends java.net.InetAddress> |
addressType()
返回此协议族的地址类型。
|
java.net.InetAddress |
localhost()
返回
InetAddress 表示该
LOCALHOST 的家庭。
|
static InternetProtocolFamily |
of(java.net.InetAddress address)
返回 InternetProtocolFamily 为给定InetAddress 。
|
static InternetProtocolFamily |
valueOf(java.lang.String name)
以指定名称返回此类型的枚举常量。
|
static InternetProtocolFamily[] |
values()
按照声明的顺序返回包含此枚举类型常量的数组。
|
public static final InternetProtocolFamily IPv4
public static final InternetProtocolFamily IPv6
public static InternetProtocolFamily[] values()
for (InternetProtocolFamily c : InternetProtocolFamily.values())
System.out.println(c);
public static InternetProtocolFamily valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。
java.lang.IllegalArgumentException
- 如果此枚举类型没有指定名称的常量
java.lang.NullPointerException
- 如果参数为空
public java.lang.Class<? extends java.net.InetAddress> addressType()
public int addressNumber()
public java.net.InetAddress localhost()
InetAddress
表示该
LOCALHOST
的家庭。
public static InternetProtocolFamily of(java.net.InetAddress address)
InternetProtocolFamily
for the given
InetAddress
.
Copyright © 2008–2018 The Netty Project. All rights reserved.