- java.lang.Object
-
- java.lang.Enum<AssociationChangeNotification.AssocChangeEvent>
-
- com.sun.nio.sctp.AssociationChangeNotification.AssocChangeEvent
-
- All Implemented Interfaces:
-
Serializable
,Comparable<AssociationChangeNotification.AssocChangeEvent>
- Enclosing class:
- AssociationChangeNotification
public static enum AssociationChangeNotification.AssocChangeEvent extends Enum<AssociationChangeNotification.AssocChangeEvent>
定义关联发生的变更事件的类型。- 从以下版本开始:
- 1.7
-
-
Enum Constant Summary
Enum Constants Enum Constant 描述 CANT_START
协会无法设置。COMM_LOST
协会失败了。COMM_UP
一个新的关联现在已经准备就绪,数据可以与该对等体进行交换。RESTART
SCTP检测到对等体重新启动。SHUTDOWN
该协会已优雅关闭。
-
方法摘要
所有方法 静态方法 具体的方法 Modifier and Type 方法 描述 static AssociationChangeNotification.AssocChangeEvent
valueOf(String name)
以指定的名称返回此类型的枚举常量。static AssociationChangeNotification.AssocChangeEvent[]
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。
-
-
-
Enum Constant Detail
-
COMM_UP
public static final AssociationChangeNotification.AssocChangeEvent COMM_UP
一个新的关联现在已经准备就绪,数据可以与该对等体进行交换。
-
COMM_LOST
public static final AssociationChangeNotification.AssocChangeEvent COMM_LOST
协会失败了。 一系列SCTP发送失败通知将遵循此通知,每个未完成的消息一个。
-
RESTART
public static final AssociationChangeNotification.AssocChangeEvent RESTART
SCTP检测到对等体重新启动。
-
SHUTDOWN
public static final AssociationChangeNotification.AssocChangeEvent SHUTDOWN
该协会已优雅关闭。
-
CANT_START
public static final AssociationChangeNotification.AssocChangeEvent CANT_START
协会无法设置。 如果在非阻塞模式下发送了SctpMultiChannel
的消息,则SCTP发送失败的通知将按照该通知发送未完成的消息。
-
-
方法详细信息
-
values
public static AssociationChangeNotification.AssocChangeEvent[] values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。 该方法可用于遍历常量如下:for (AssociationChangeNotification.AssocChangeEvent c : AssociationChangeNotification.AssocChangeEvent.values()) System.out.println(c);
- 结果
- 一个包含这个枚举类型的常量的数组,按照它们被声明的顺序
-
valueOf
public static AssociationChangeNotification.AssocChangeEvent valueOf(String name)
以指定的名称返回此类型的枚举常量。 字符串必须完全匹配用于声明此类型的枚举常量的标识符。 (不允许使用外来空白字符。)- 参数
-
name
- 要返回的枚举常量的名称。 - 结果
- 具有指定名称的枚举常数
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量 -
NullPointerException
- 如果参数为空
-
-